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):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 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.
mkdir /usr/lib/browser/plugins/10.1 cp /path/to/new/libflashplayer.so /usr/lib/browser/plugins/10.1
mkdir /usr/lib/browser/plugins/orig mv /usr/lib/browser/plugins/libflashplayer.so /usr/lib/browser/plugins/orig
ln -sf /usr/lib/browser/plugins/10.1/libflashplayer.so /usr/lib/browser/plugins/libflashplayer.so
ln -sf /usr/lib/browser/plugins/orig/libflashplayer.so /usr/lib/browser/plugins/libflashplayer.so