Adobe stopped their Flash support for Linux some time ago. However, you can still get the latest Flash through Google’s Pepper Flash player. This comes with Google Chrome, but if you’re using Chromium you will have to add it manually. Fortunately, its easy to do.
For Linux Mint 17+ the Pepper Flash is available via the default repositoies. Just do this:
1 2 |
|
If you’re running an earlier version of Mint you’ll need to do this:
1 2 3 4 |
|
After Pepper Flash plugin is installed, you’ll need to tell Chromium to use it. Run this command as root:
echo ". /usr/lib/pepflashplugin-installer/pepflashplayer.sh" >> /etc/chromium-browser/default
It may be the case that the above command will not be sufficient if the /etc/chromium-browser/default file is constantly being overwritten. If this is the case, then you have a couple of choices.
The best choice would be to add the CHROMIUM_USER_FLAGS variable to your $HOME/.profile file. Since this filename starts with a dot (.) it will be hidden. Rest assured it does exist in your home directory.
1 2 3 |
|
If you would rather make the change system-wide, find the chromium-browser script, search for the CHROMIUM_FLAGS variable, and add the following two lines below it:
1 2 3 4 5 6 |
|
Restart Chromium, and load the chrome://plugins page to verify that the plugin is active. (Note that if you see a Flash plugin with a version of 11.2 or lower, then that is an old, non-PPAPI version of Flash. A current version of Pepper Flash will be 11.7 or higher.)