Aktív témák

  • dbius

    veterán

    válasz dbius #16343 üzenetére

    Ubuntuforumon is többen panaszkodnak hasonló problémára: [link]

    Elméletileg a megoldás az alábbi: (fenti helyről származó postok közül való, de még nem tudtam kipróbálni)

    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 for install with ubuntuzilla it is /opt/firefox/firefox);
    then add as 2nd (NOT 1st) line:
    Code:

    export LD_PRELOAD=/usr/lib/libGL.so.1

    I'm not sure if this will keep working after an update of the browser (then do it again).

    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

    or when you run from an extracted tarball:

    Code:

    #!/bin/sh
    export LD_PRELOAD=/usr/lib/libGL.so.1
    /path/to/firefox

    Now to run your browser make a launcher with as a command:

    sh /path/to/script

    [ Szerkesztve ]

Aktív témák