hello, i've problem with flash_player_10 on ubuntu amd64.
libflashplayer.so cp: cannot stat `install_flash_player_10_linux/libflashplayer.so': No such file or directory chmod: cannot access `/usr/lib/mozilla/plugins/libflashplayer.so': No such file or directory nspluginwrapper: /usr/lib/mozilla/plugins/libflashplayer.so is not a valid NPAPI plugin Linking the libraries so Firefox can find it. my script is : #!/bin/bash # Script created by # Romeo-Adrian Cioaba romeo.cio...@spotonearth.com # Super minor updates by jason.melton[at]gmail[dot]com # Released under GPL echo "Stopping any Firefox that might be running" sudo killall -9 firefox echo "Removing any other flash plugin previously installed:" sudo apt-get remove -y --purge flashplugin-nonfree gnash gnash-common mozilla-plugin-gnash swfdec-mozilla libflashsupport nspluginwrapper sudo rm -f /usr/lib/mozilla/plugins/*flash* sudo rm -f ~/.mozilla/plugins/*flash* sudo rm -f /usr/lib/firefox/plugins/*flash* sudo rm -f /usr/lib/firefox-addons/plugins/*flash* sudo rm -rfd /usr/lib/nspluginwrapper echo "Installing ia32-libs and nspluginwrapper" sudo apt-get install ia32-libs nspluginwrapper echo "Getting libs" sudo getlibs -p libcurl3 sudo getlibs -p libnss3-1d sudo getlibs -p libnspr4-0d echo "Installing Flash Player 10" cd ~ wget http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_10_linux.tar.gz tar zxvf install_flash_player_10_linux.tar.gz sudo cp install_flash_player_10_linux/libflashplayer.so /usr/lib/mozilla/plugins/ sudo chmod +rx /usr/lib/mozilla/plugins/libflashplayer.so rm -rf ~/install_flash_player_10_linux/ sudo nspluginwrapper -i /usr/lib/mozilla/plugins/libflashplayer.so echo "Linking the libraries so Firefox can find it." sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so/usr/lib/mozilla/plugins/ sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so/usr/lib/firefox-addons/plugins/ echo "Done :-)" Thanks, regards. Ben