I'm betting you got the flashplayer plugin from the repos... right?
Open synaptic package manager... uninstall that package COMPLETELY. You don't want it (the repos are always out of date for flashplayer).
Now go here:
http://www.adobe.com/support/flashpl...oads.html#fp10
find the 'linux flashplayer 10 debugger' section (this is for debugger version... it makes deving much easier, also if you are using like Eclipse or something with the FlexBuilder plugin, this will give you the latest version... though that's a bit tough to get working correctly, so tell me if this is true and I can explain it).
Make sure you get the 'tar' of it and not some other. The tar I find to be the easiest.
decompress the tar where ever. I usually do it right on the desktop so it's easy to get to in terminal... so lets say it's at:
/home/myUserName/Desktop/flash_player_10_linux_dev
open the folder and navigate into ./plugin/debugger and decompress the install_flash_player_10_linux.tar.gz
now open terminal and do the following:
Code:
//ignore bash~$, that's just me saying new command line
//change to the correct directory
bash~$ cd ~/Desktop/flash_player_10_linux_dev/plugin/debugger/install_flash_player_10_linux
//make installer executable
bash~$ sudo chmod -755 ./flashplayer-installer
//run plugin installer
bash~$ sudo ./flashplayer-installer
follow the on screen prompts. This gets the latest flashplayer plugin installed w/ debug capabilities.
Now for the standalone player.
Go back to /home/myUserName/Desktop/flash_player_10_linux_dev
and follow down into ./standalone/debugger, and decompress the tar in there... that's your standalone player.
NOW, this is what I usually do... you don't have to do it this way. You can just toss this on your desktop and run it from there. But I like to do it another way, this lets linux recognize it as a global program and be ran from terminal easily.
in your home directory if you don't already have it, create a 'Programs' folder...
/home/myUserName/Programs
this is where I install special programs that aren't from the repo and are private to me alone.
Now drop the standalone player in the Programs folder... /home/myUserName/Programs (if you want, give it its own folder... but you don't have to)
now open a terminal and do the following and go to the /usr/local/bin folder:
bash~$ cd /usr/local/bin
while in this folder as root create and edit a file called 'flashplayer'
bash~$ sudo gedit flashplayer
you'll have to enter your root password
now in the file write the following:
Code:
/home/myUserName/Programs/flashplayer
or wherever your flashplayer program is located
save and close... and finally make it executable
bash~$ sudo chmod 755 /usr/local/bin/flashplayer
...
NOW, no matter where you are you can run flashplayer just by typing
bash~$ flashplayer
win!
You can even create a launcher on your desktop somewhere for it, just add the command 'flashplayer' and it will launch.
NOTE:
chmod 755 is a command to modify the permissions of a file or folder. The octal code 755 means:
owner: read write execute
group: read execute
nouser: read execute