View Single Post
Posts: 133 | Thanked: 17 times | Joined on May 2010
#1877
Originally Posted by rebhana View Post
Having tested this leaked 10.1 plugin, I soon switched back to the native one. But it's certainly good to have the option of a real if somewhat unstable 10.1 flashplayer for cases where tweakflashver is not enough. To be able to switch between the different versions I found that it's simplest to do that by symbolic links, like so (as root):
  1. Install experimental version in, say, new subdirectory 10.1:
    Code:
    mkdir /usr/lib/browser/plugins/10.1
    cp /path/to/new/libflashplayer.so /usr/lib/browser/plugins/10.1
  2. Move original version to, say, new subdirectory orig:
    Code:
    mkdir /usr/lib/browser/plugins/orig
    mv /usr/lib/browser/plugins/libflashplayer.so /usr/lib/browser/plugins/orig
To activate 10.1 version I do
Code:
ln -sf /usr/lib/browser/plugins/10.1/libflashplayer.so /usr/lib/browser/plugins/libflashplayer.so
and to activate the original version I do
Code:
ln -sf /usr/lib/browser/plugins/orig/libflashplayer.so /usr/lib/browser/plugins/libflashplayer.so
It's of course easy enough to define shortcuts (e.g. shell aliases for root) to have a more convenient switch, or even make a simple dedicated app.
wow this is great for on the fly flash version switching, thanks!
if you know how to make a dedicated app for the switch please keep us posted or tell us any other shortcut