"
Solved: load the flash plugin before firefox or swiftfox. It's a NVidia driver issue. (edit: not only... ATI users seem to benefit from this too).
Easiest fix: modify the startup script of your browser, e.g. in case of Minefield (firefox-3.6):
gksudo gedit /usr/lib/firefox-3.6a1pre/firefox.sh
Find your browser script in the same area, somewhere in /usr/lib/yourbrowser; (edit: other possible locations are like /usr/local/lib/firefox-3.5/firefox or /opt/firefox/firefox);
then add as 2nd (NOT 1st) line:
Code:
export LD_PRELOAD=/usr/lib/libGL.so.1
If this doesn't work or you don't like this solution try the following:
I couldn't get it done in a launcher command but I used the script option (copypaste in gedit and save):
Code:
#!/bin/sh
## replace firefox-3.6 with what you use, e.g. firefox, firefox-3.5, swiftfox
LD_PRELOAD=/usr/lib/libGL.so.1 firefox-3.6
Code:
#!/bin/sh
export LD_PRELOAD=/usr/lib/libGL.so.1
/path/to/firefox
sh /path/to/script
"
thx, works well
ReplyDelete