When you are already crazy about linux flashplayer not being installed, you might as well take a look
I am using Ubuntu 12.04.4 LTS. Because firefox cannot play flash, I downloaded an adobeflashplayer plug-in. After the installation, an error pops up;
The following software packages require additional data to be downloaded after installation, but their data cannot be downloaded or processed.
flashplugin-installer
After searching, it seems that this is a bug of ubuntu, and it can't be solved according to online methods such as deleting the suggested directory. So I tried various installation packages such as rpm/tar.gz/apt on the official website, but the problem could not be solved. Finally, I visited the forum and prompted that I need to put the so file in the firefoxplugins directory. I tried it and finally solved it. This article summarizes the method of installing flashplayer plugin under linux
sudo apt-get install flashplugin-nonfree-extrasound
cd download##Enter your targz file download directory
tar -zxvf install_flash_player_11_linux.i386.tar.gz ##Please write the name of the targz file you downloaded later
sudo mv libflashplayer.so /usr/lib/firefox-addons/plugins ##Move so file
Chromium: (Chrome is similar, just go to Baidu to check the chrome plugin storage directory) #
Download the targz file as above and extract the libflashplayer.so file
sudo cp flashplayer.so /usr/lib/chromium-browser/plugins##Copy the so file
Restart your chromium to use flash normally!
Recommended Posts