I installed Kubuntu 11.04 64bit on my notebook PC about an hour ago. It has so far impressed me. The only issue I was having is the installation of Flash Player. I tried a few workouts I found on the internet but none but the following worked. I found the solution on Ask Ubuntu. Save the following codes and run it as a shell script. It installs Flash Player 10 though. If you’re bash savvy, you can of course tweak it to install the version you desire! Happy flashing (!?) 😀 😛
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# Preparation # sudo killall -9 firefox 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 # Download and Extract Flash # cd ~ wget http://download.macromedia.com/pub/labs/flashplayer10/flashplayer10_2_p3_64bit_linux_111710.tar.gz tar xzvf flashplayer10_2_p3_64bit_linux_111710.tar.gz # Install # sudo mkdir /usr/lib/flashplugin-manual sudo mv libflashplayer.so /usr/lib/flashplugin-manual/ # Firefox sudo ln -sf /usr/lib/flashplugin-manual/libflashplayer.so /usr/lib/mozilla/plugins/ # Note that I didn't need to do the next two commands, but I left them in anyway. # Firefox is not my main browser, so I'm not sure what the purpose of those two commands are sudo ln -sf /usr/lib/flashplugin-manual/libflashplayer.so /usr/lib/firefox-addons/plugins/ sudo ln -sf /usr/lib/flashplugin-manual/libflashplayer.so /usr/lib/xulrunner-addons/plugins/ # Chrome sudo mkdir -p /opt/google/chrome/plugins sudo ln -sf /usr/lib/flashplugin-manual/libflashplayer.so /opt/google/chrome/plugins/libflashplayer.so # Cleanup # rm flashplayer10_2_p3_64bit_linux_111710.tar.gz |