From: Gary P. <gar...@gm...> - 2009-11-19 03:49:09
|
I'm running Kubuntu 9.10 and python 2.6.4 on a Thinkpad T41 which sports the dreaded Radeon Mobility 7500 video set. I followed instructions exactly, then began to try example programs. doublependulum worked fine. The next one I tried was stonehenge. I got an error that visual.text could not be found. Then I tried stars, and got an error that newaxis was not defined. Uh oh. Not good. I also tried gyro and gas. The visual.text error came up more than once. Then I noticed that some icons were missing from my system, replaced by question marks. I figured I should at least logout/in, perhaps restart X, perhaps reboot. So I logout via the KDE menu, and the system drops into a character terminal login screen ... unusual ... but I can't log in. Any user name entered resulted in the login prompt returning. No password prompt. I tried other "terminals" (alt-f2, etc) same result. I could get no useful response doing anything I could think of. Out of ideas, I powered down. On restart, a filesystem check started, but ended in failure: filesystem could not be mounted. It did give me a "rescue" terminal session of some sort, and I was able to run fsck. A couple dozen errors were found and repaired. Things like orphaned inodes, broken chains, I don't remember exactly, but I'm sure you get the idea. I don't know if there is any permanent "damage". I wish I could give you more information, but there's not much more to tell. If you think there might be clues left behind, I'll gladly look for them. -gary |
From: Gary P. <gar...@gm...> - 2009-11-19 03:53:06
|
I meant Guy Kloss' instructions. Sorry, poor proofreading. On Wed, Nov 18, 2009 at 10:48 PM, Gary Pajer <gar...@gm...> wrote: > I'm running Kubuntu 9.10 and python 2.6.4 on a Thinkpad T41 which sports > the dreaded Radeon Mobility 7500 video set. > > I followed instructions exactly, then began to try example > programs. > > doublependulum worked fine. > > The next one I tried was stonehenge. I got an error that visual.text could > not be found. > Then I tried stars, and got an error that newaxis was not defined. Uh oh. > Not good. > I also tried gyro and gas. The visual.text error came up more than once. > > Then I noticed that some icons were missing from my system, replaced by > question marks. I figured I should at least logout/in, perhaps restart X, > perhaps reboot. So I logout via the KDE menu, and the system drops into a > character terminal login screen ... unusual ... but I can't log in. Any > user name entered resulted in the login prompt returning. No password > prompt. I tried other "terminals" (alt-f2, etc) same result. I could get > no useful response doing anything I could think of. Out of ideas, I powered > down. > > On restart, a filesystem check started, but ended in failure: filesystem > could not be mounted. It did give me a "rescue" terminal session of some > sort, and I was able to run fsck. A couple dozen errors were found and > repaired. Things like orphaned inodes, broken chains, I don't remember > exactly, but I'm sure you get the idea. I don't know if there is any > permanent "damage". > > I wish I could give you more information, but there's not much more to > tell. If you think there might be clues left behind, I'll gladly look for > them. > > -gary > > > |
From: marco b. <mar...@un...> - 2009-11-19 20:05:27
|
I am trying to install pylab for python 2.6, but I have problem finding the package (even in the main Python website). Could you help me ? Marco Marco Bittelli, Ph.D. Department of Agro-Environmental Science and Technology University of Bologna, Italy Viale Fanin, 44. 40125, Bologna, Italy email:mar...@un... http://www.dista.unibo.it/~bittelli _____ Da: Gary Pajer [mailto:gar...@gm...] Inviato: Thursday, November 19, 2009 4:53 AM A: vpusers Oggetto: Re: [Visualpython-users] Ubuntu 9.10 (Karmic) installation/fix:WARNING!! I meant Guy Kloss' instructions. Sorry, poor proofreading. On Wed, Nov 18, 2009 at 10:48 PM, Gary Pajer <gar...@gm...> wrote: I'm running Kubuntu 9.10 and python 2.6.4 on a Thinkpad T41 which sports the dreaded Radeon Mobility 7500 video set. I followed instructions exactly, then began to try example programs. doublependulum worked fine. The next one I tried was stonehenge. I got an error that visual.text could not be found. Then I tried stars, and got an error that newaxis was not defined. Uh oh. Not good. I also tried gyro and gas. The visual.text error came up more than once. Then I noticed that some icons were missing from my system, replaced by question marks. I figured I should at least logout/in, perhaps restart X, perhaps reboot. So I logout via the KDE menu, and the system drops into a character terminal login screen ... unusual ... but I can't log in. Any user name entered resulted in the login prompt returning. No password prompt. I tried other "terminals" (alt-f2, etc) same result. I could get no useful response doing anything I could think of. Out of ideas, I powered down. On restart, a filesystem check started, but ended in failure: filesystem could not be mounted. It did give me a "rescue" terminal session of some sort, and I was able to run fsck. A couple dozen errors were found and repaired. Things like orphaned inodes, broken chains, I don't remember exactly, but I'm sure you get the idea. I don't know if there is any permanent "damage". I wish I could give you more information, but there's not much more to tell. If you think there might be clues left behind, I'll gladly look for them. -gary |
From: Bruce S. <Bru...@nc...> - 2009-11-19 21:10:37
|
After a bit of googling, the situation seems to be this: matplotlib (http://matplotlib.sourceforge.net) is a Python 2d plotting library which includes a module named pylab. I'm guessing that's what you're looking for. A confusing factor is that at http://www.scipy.org/PyLab there is a discussion that starts out with this: See the following post for further discussion of the difference between the vision for a new PyLab expressed on this page, and the existing pylab package which is part of matplotlib: http://www.nabble.com/pylab-td24910613.html Incidentally, the www.scipy.org/PyLab discussion makes a case for a new pylab to be invoked as "from pylab import *" which would import a bunch of stuff almost anyone doing scientific processing will need (including numpy and scipy), rather like the current situation with Visual. The essayist then says, foreseeing objections, "But there are so many names! Not really. from scipy import * brings in about 20 subpackages (i.e. signal such that you still need to do signal.ifft, but not scipy.signal.ifft) and only 15 new symbols." Bruce Sherwood marco bittelli wrote: > I am trying to install pylab for python 2.6, but I have problem finding > the package (even in the main Python website). > > > > Could you help me ? > > > > Marco > > > > Marco Bittelli, Ph.D. > > Department of Agro-Environmental Science and Technology > > University of Bologna, Italy > > Viale Fanin, 44. > > 40125, Bologna, Italy > > email:mar...@un... > > http://www.dista.unibo.it/~bittelli |
From: Gary P. <gar...@gm...> - 2009-11-28 17:56:16
|
PyLab is new to me, but I am familiar with pylab (matplotlib sub). I also strongly suspect that matplotlib is what you want. You don't say what platform you are on, but matplotlib is included in the Ubuntu installation repository. I've found the easiest way to install matplotlib on WinXP is using the stand-alone installer on their website. I think they offer an "easy_install" option, but I've gotten tied up in knots with that from time to time. Now, since Bruce brought it up ... One problem with "from pylab import *" is that matplotlib overwrites some numpy functions, for example linspace(). I don't know why or how that happened, but the two functions behave differently. People probably expect the numpy behavior, but unexpectedly get the matplotlib behavior. Perhaps PyLab does away with this conflict. I don't know. On Thu, Nov 19, 2009 at 4:10 PM, Bruce Sherwood <Bru...@nc...>wrote: > After a bit of googling, the situation seems to be this: > > matplotlib (http://matplotlib.sourceforge.net) is a Python 2d plotting > library > which includes a module named pylab. I'm guessing that's what you're > looking for. > > A confusing factor is that at http://www.scipy.org/PyLab there is a > discussion > that starts out with this: > > See the following post for further discussion of the difference between the > vision for a new PyLab expressed on this page, and the existing pylab > package > which is part of matplotlib: > http://www.nabble.com/pylab-td24910613.html > > Incidentally, the www.scipy.org/PyLab discussion makes a case for a new > pylab to > be invoked as "from pylab import *" which would import a bunch of stuff > almost > anyone doing scientific processing will need (including numpy and scipy), > rather > like the current situation with Visual. The essayist then says, foreseeing > objections, "But there are so many names! Not really. from scipy import * > brings > in about 20 subpackages (i.e. signal such that you still need to do > signal.ifft, > but not scipy.signal.ifft) and only 15 new symbols." > > Bruce Sherwood > > marco bittelli wrote: > > I am trying to install pylab for python 2.6, but I have problem finding > > the package (even in the main Python website). > > > > > > > > Could you help me ? > > > > > > > > Marco > > > > > > > > Marco Bittelli, Ph.D. > > > > Department of Agro-Environmental Science and Technology > > > > University of Bologna, Italy > > > > Viale Fanin, 44. > > > > 40125, Bologna, Italy > > > > email:mar...@un... <email%3Am...@un...> > > > > http://www.dista.unibo.it/~bittelli<http://www.dista.unibo.it/%7Ebittelli> > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > |
From: Michele M. <mat...@gm...> - 2009-11-28 18:54:55
|
To use pylab properly in a program you should use the object oriented way: import numpy as np import scipy as sp import matplotlib.pyplot as plt then use them accordingly to your need. The quick use of the console interface a la matlab to try thing can be done using ipython, but should be used only on a try and errors scheme. Some example here: http://www.slideshare.net/mattions/scipy-numpy-and-friends Cheers, Michele On Sat, Nov 28, 2009 at 5:56 PM, Gary Pajer <gar...@gm...> wrote: > PyLab is new to me, but I am familiar with pylab (matplotlib sub). I also > strongly suspect that matplotlib is what you want. You don't say what > platform you are on, but matplotlib is included in the Ubuntu installation > repository. I've found the easiest way to install matplotlib on WinXP is > using the stand-alone installer on their website. I think they offer an > "easy_install" option, but I've gotten tied up in knots with that from time > to time. > > Now, since Bruce brought it up ... > > One problem with "from pylab import *" is that matplotlib overwrites some > numpy functions, for example linspace(). I don't know why or how that > happened, but the two functions behave differently. People probably expect > the numpy behavior, but unexpectedly get the matplotlib behavior. > > Perhaps PyLab does away with this conflict. I don't know. > > > > > On Thu, Nov 19, 2009 at 4:10 PM, Bruce Sherwood <Bru...@nc...>wrote: > >> After a bit of googling, the situation seems to be this: >> >> matplotlib (http://matplotlib.sourceforge.net) is a Python 2d plotting >> library >> which includes a module named pylab. I'm guessing that's what you're >> looking for. >> >> A confusing factor is that at http://www.scipy.org/PyLab there is a >> discussion >> that starts out with this: >> >> See the following post for further discussion of the difference between >> the >> vision for a new PyLab expressed on this page, and the existing pylab >> package >> which is part of matplotlib: >> http://www.nabble.com/pylab-td24910613.html >> >> Incidentally, the www.scipy.org/PyLab discussion makes a case for a new >> pylab to >> be invoked as "from pylab import *" which would import a bunch of stuff >> almost >> anyone doing scientific processing will need (including numpy and scipy), >> rather >> like the current situation with Visual. The essayist then says, foreseeing >> objections, "But there are so many names! Not really. from scipy import * >> brings >> in about 20 subpackages (i.e. signal such that you still need to do >> signal.ifft, >> but not scipy.signal.ifft) and only 15 new symbols." >> >> Bruce Sherwood >> >> marco bittelli wrote: >> > I am trying to install pylab for python 2.6, but I have problem finding >> > the package (even in the main Python website). >> > >> > >> > >> > Could you help me ? >> > >> > >> > >> > Marco >> > >> > >> > >> > Marco Bittelli, Ph.D. >> > >> > Department of Agro-Environmental Science and Technology >> > >> > University of Bologna, Italy >> > >> > Viale Fanin, 44. >> > >> > 40125, Bologna, Italy >> > >> > email:mar...@un... <email%3Am...@un...> >> > >> > http://www.dista.unibo.it/~bittelli<http://www.dista.unibo.it/%7Ebittelli> >> >> >> ------------------------------------------------------------------------------ >> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> 30-Day >> trial. Simplify your report design, integration and deployment - and focus >> on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users >> > > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > |
From: Chris C. <scc...@gm...> - 2009-11-30 10:20:38
|
On Sat, Nov 28, 2009 at 6:56 PM, Gary Pajer <gar...@gm...> wrote: > PyLab is new to me, but I am familiar with pylab (matplotlib sub). I also > strongly suspect that matplotlib is what you want. You don't say what > platform you are on, but matplotlib is included in the Ubuntu installation > repository. I've found the easiest way to install matplotlib on WinXP is > using the stand-alone installer on their website. I think they offer an > "easy_install" option, but I've gotten tied up in knots with that from time > to time. > > Now, since Bruce brought it up ... > > One problem with "from pylab import *" is that matplotlib overwrites some > numpy functions, for example linspace(). I don't know why or how that > happened, but the two functions behave differently. People probably expect > the numpy behavior, but unexpectedly get the matplotlib behavior. > > Perhaps PyLab does away with this conflict. I don't know. > That is incorrect: In [1]: import pylab as pl In [2]: pl.linspace Out[2]: <function linspace at 0x2763c80> In [3]: import numpy as np In [4]: np.linspace Out[4]: <function linspace at 0x2763c80> They are the same function. > > > On Thu, Nov 19, 2009 at 4:10 PM, Bruce Sherwood <Bru...@nc...> > wrote: >> >> After a bit of googling, the situation seems to be this: >> >> matplotlib (http://matplotlib.sourceforge.net) is a Python 2d plotting >> library >> which includes a module named pylab. I'm guessing that's what you're >> looking for. >> >> A confusing factor is that at http://www.scipy.org/PyLab there is a >> discussion >> that starts out with this: >> >> See the following post for further discussion of the difference between >> the >> vision for a new PyLab expressed on this page, and the existing pylab >> package >> which is part of matplotlib: >> http://www.nabble.com/pylab-td24910613.html >> >> Incidentally, the www.scipy.org/PyLab discussion makes a case for a new >> pylab to >> be invoked as "from pylab import *" which would import a bunch of stuff >> almost >> anyone doing scientific processing will need (including numpy and scipy), >> rather >> like the current situation with Visual. The essayist then says, foreseeing >> objections, "But there are so many names! Not really. from scipy import * >> brings >> in about 20 subpackages (i.e. signal such that you still need to do >> signal.ifft, >> but not scipy.signal.ifft) and only 15 new symbols." >> >> Bruce Sherwood >> >> marco bittelli wrote: >> > I am trying to install pylab for python 2.6, but I have problem finding >> > the package (even in the main Python website). >> > >> > >> > >> > Could you help me ? >> > >> > >> > >> > Marco >> > >> > >> > >> > Marco Bittelli, Ph.D. >> > >> > Department of Agro-Environmental Science and Technology >> > >> > University of Bologna, Italy >> > >> > Viale Fanin, 44. >> > >> > 40125, Bologna, Italy >> > >> > email:mar...@un... >> > >> > http://www.dista.unibo.it/~bittelli >> >> >> ------------------------------------------------------------------------------ >> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> 30-Day >> trial. Simplify your report design, integration and deployment - and focus >> on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > |
From: Guy K. K. <g....@ma...> - 2009-11-19 04:14:14
|
Hi Gary, the symptoms you've mentioned indicate that something else went (massively) wrong, as I doubt that any "normal" Python process or anything that the Visual library can do would result in such effects. Maybe it's got to do with your graphic card's drivers. Anyway, whatever process *you* start should usually *only* be able to affect user space things. But your descriptions go way beyond what a graphics based application generally would do. I have just checked again here, and all demos I've checked worked. Well, stonehenge.py did not, but that was only due to the fact that the file "flower128.tga" is not present in the samples directory. I don't know, maybe it was removed due to licensing issues or just forgotten. But also all surface textures worked here. It would however be good to track down what your problem is. Maybe not as much for VPython as for your own system's sake. Have a look at /var/log/messages and /var/log/syslog what might have happened and led to the crash. Also check whether other OpenGL based applications show similar effects. Hope these were some hints on tracking down the cause, Guyt -- Guy K. Kloss Institute of Information and Mathematical Sciences Te Kura Pūtaiao o Mōhiohio me Pāngarau Massey University, Albany (North Shore City, Auckland) 473 State Highway 17, Gate 1, Mailroom, Quad B Building voice: +64 9 414-0800 ext. 9585 fax: +64 9 441-8181 G....@ma... http://www.massey.ac.nz/~gkloss |
From: Gary P. <gar...@gm...> - 2009-11-19 16:11:51
|
On Wed, Nov 18, 2009 at 11:13 PM, Guy K. Kloss <g....@ma...> wrote: > Hi Gary, > > the symptoms you've mentioned indicate that something else went (massively) > wrong, as I doubt that any "normal" Python process or anything that the > Visual > library can do would result in such effects. Maybe it's got to do with your > graphic card's drivers. Anyway, whatever process *you* start should usually > *only* be able to affect user space things. But your descriptions go way > beyond what a graphics based application generally would do. > > I have just checked again here, and all demos I've checked worked. Well, > stonehenge.py did not, but that was only due to the fact that the file > "flower128.tga" is not present in the samples directory. I don't know, > maybe > it was removed due to licensing issues or just forgotten. But also all > surface > textures worked here. > > It would however be good to track down what your problem is. Maybe not as > much > for VPython as for your own system's sake. Have a look at /var/log/messages > and /var/log/syslog what might have happened and led to the crash. Also > check > whether other OpenGL based applications show similar effects. > I found some corrupt memory errors in the log that occurred close in time to my usage of another new application that I had started with sudo. I'm tracking down that line also. > > Hope these were some hints on tracking down the cause, > > Guyt > > -- > Guy K. Kloss > Institute of Information and Mathematical Sciences > Te Kura Pūtaiao o Mōhiohio me Pāngarau > Massey University, Albany (North Shore City, Auckland) > 473 State Highway 17, Gate 1, Mailroom, Quad B Building > voice: +64 9 414-0800 ext. 9585 fax: +64 9 441-8181 > G....@ma... http://www.massey.ac.nz/~gkloss<http://www.massey.ac.nz/%7Egkloss> > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > |
From: Bruce S. <Bru...@nc...> - 2009-11-19 05:29:44
|
There are no licensing issues with flower128.tga (I took that picture of cactus flowers myself), and I don't know why it would be missing. Bruce Sherwood Guy K. Kloss wrote: > Hi Gary, > > the symptoms you've mentioned indicate that something else went (massively) > wrong, as I doubt that any "normal" Python process or anything that the Visual > library can do would result in such effects. Maybe it's got to do with your > graphic card's drivers. Anyway, whatever process *you* start should usually > *only* be able to affect user space things. But your descriptions go way > beyond what a graphics based application generally would do. > > I have just checked again here, and all demos I've checked worked. Well, > stonehenge.py did not, but that was only due to the fact that the file > "flower128.tga" is not present in the samples directory. I don't know, maybe > it was removed due to licensing issues or just forgotten. But also all surface > textures worked here. > > It would however be good to track down what your problem is. Maybe not as much > for VPython as for your own system's sake. Have a look at /var/log/messages > and /var/log/syslog what might have happened and led to the crash. Also check > whether other OpenGL based applications show similar effects. > > Hope these were some hints on tracking down the cause, > > Guyt > |
From: Guy K. K. <g....@ma...> - 2009-11-19 23:29:00
|
On Thu, 19 Nov 2009 18:29:44 Bruce Sherwood wrote: > There are no licensing issues with flower128.tga (I took that picture of > cactus flowers myself), and I don't know why it would be missing. Was just a rough guess anyway. So I guess someone either wasn't sure and removed it, or it just got forgotten maybe ... Guy -- Guy K. Kloss Institute of Information and Mathematical Sciences Te Kura Pūtaiao o Mōhiohio me Pāngarau Massey University, Albany (North Shore City, Auckland) 473 State Highway 17, Gate 1, Mailroom, Quad B Building voice: +64 9 414-0800 ext. 9585 fax: +64 9 441-8181 G....@ma... http://www.massey.ac.nz/~gkloss |
From: Gary P. <gar...@gm...> - 2009-12-04 19:32:15
|
On Wed, Nov 18, 2009 at 11:13 PM, Guy K. Kloss <g....@ma...> wrote: > Hi Gary, > > the symptoms you've mentioned indicate that something else went (massively) > wrong, as I doubt that any "normal" Python process or anything that the > Visual > library can do would result in such effects. Maybe it's got to do with your > graphic card's drivers. Anyway, whatever process *you* start should usually > *only* be able to affect user space things. But your descriptions go way > beyond what a graphics based application generally would do. > > I have just checked again here, and all demos I've checked worked. Well, > stonehenge.py did not, but that was only due to the fact that the file > "flower128.tga" is not present in the samples directory. I don't know, > maybe > it was removed due to licensing issues or just forgotten. But also all > surface > textures worked here. > > It would however be good to track down what your problem is. Maybe not as > much > for VPython as for your own system's sake. Have a look at /var/log/messages > and /var/log/syslog what might have happened and led to the crash. Also > check > whether other OpenGL based applications show similar effects. > > Hope these were some hints on tracking down the cause, > > Guyt > Without fail, after four or five successful runs of VPython scripts my system experiences file system corruption. I believe I am a victim of this bug on Ubuntu 9.10<https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/474928>, which is indeed related to the dreaded Radeon Mobility 7500 graphics adapter. Dreaded because this thing has way more than its share of problems, and ATI has set it adrift... no more driver updates... I report this because someone else might suffer from it, and come looking here for help. -gary -gary > > -- > Guy K. Kloss > Institute of Information and Mathematical Sciences > Te Kura Pūtaiao o Mōhiohio me Pāngarau > Massey University, Albany (North Shore City, Auckland) > 473 State Highway 17, Gate 1, Mailroom, Quad B Building > voice: +64 9 414-0800 ext. 9585 fax: +64 9 441-8181 > G....@ma... http://www.massey.ac.nz/~gkloss<http://www.massey.ac.nz/%7Egkloss> > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > |
From: Gary P. <gar...@gm...> - 2009-12-16 14:42:49
|
On Fri, Dec 4, 2009 at 2:32 PM, Gary Pajer <gar...@gm...> wrote: [...] > > Without fail, after four or five successful runs of VPython scripts my > system experiences file system corruption. > > I believe I am a victim of this bug on Ubuntu 9.10<https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/474928>, > which is indeed related to the dreaded Radeon Mobility 7500 graphics > adapter. Dreaded because this thing has way more than its share of > problems, and ATI has set it adrift... no more driver updates... > > I report this because someone else might suffer from it, and come looking > here for help. > A partial workaround is to downgrade libgl1-mesa-dri and libgl1-mesa-glx to jaunty. See http://www.ode2.com/?p=44 Prevents file system corruption, but renders incorrectly in some cases. |