25

Now, that Adobe has stopped issuing new releases for Linux desktops, the only option for users is to use Google Chrome, for those who want to use the latest Flash updates. I use Chromium. Is there any way to get Chromium use the Flash from Google Chrome? The reason I as this question is that I have noticed both these browsers run in the background, so technically, the browsers' plugins are available to use.

user unknown
  • 6,892
Ubuntuser
  • 10,012

9 Answers9

25

THIS ANSWER IS 4 YRS OLD AND MAY NOT WORK ON NEWER SYSTEMS

Download Google Chrome and extract libpepflashplayer.so from /opt/google/chrome/PepperFlash in the Chrome deb file Copy libpepflashplayer.so to /usr/lib/chromium-browser/plugins Make the necessary changes to the Chromium startup

sudo gedit /etc/chromium-browser/default

Add this to the CHROMIUM_FLAGS

CHROMIUM_FLAGS="--ppapi-flash-path=/usr/lib/chromium-browser/plugins/libpepflashplayer.so --ppapi-flash-version=11.5.31.2"

You can get the correct version of the flash plugin from the "version": json tag in the mainfest.json from /opt/google/chrome/PepperFlash in the Chrome deb file

Ubuntuser
  • 10,012
Craig Gomez
  • 251
  • 3
  • 3
9

pepperflashplugin-nonfree is deprecated on 05/2015. They do not work for Chrome 53 and higher. You can see Getting-Flash. Ubuntu Wiki also "recommended" you to install adobe-flashplugin. Then we install adobe-flashplugin.

sudo add-apt-repository "deb http://archive.canonical.com/ubuntu $(lsb_release -sc) partner"
sudo apt-get update
sudo apt-get install adobe-flashplugin

Then you should restart your browser and open chrome://plugins/. If you don't see Adobe Flash Player there, you can run the following commands.

sudo apt-get install chromium-browser
sudo apt-get upgrade

It will upgrade adobe-flashplugin for chromium or if you use chrome, do it the same way.

thangdc94
  • 950
4

These instructions will install Pepper flash player for Chromium in Ubuntu 14.04 and later releases, and it will also be updated automatically. Because Google ended support for Chrome on 32-bit Linux in March, 2016, Pepper flash player can only be installed for 64-bit versions of Chromium.

To install flash player in Chromium web browser search the Dash for Software & Updates and open the Software & Updates window. Click the Other Software tab in the Software & Updates window and put a check mark in the checkbox to the left of where it says: Canonical Partners.

enter image description here

Click the Close button to close the Software & Updates window.

Open the terminal and type:

sudo apt remove pepperflashplugin-nonfree # remove pepperflashplugin-nonfree if it's installed  
sudo apt-get update  
sudo apt-get install adobe-flashplugin  
sudo apt install browser-plugin-freshplayer-pepperflash
karel
  • 122,292
  • 133
  • 301
  • 332
2

This worked great for me: http://www.webupd8.org/2012/09/how-to-make-chromium-use-flash-player.html

It's similar to Craig's answer but with help for the "flags" part.

2

Google Chrome's flash player Pepper Flash is now in Ubuntu reposistories (Ubuntu 14.04). You can install it running the following commands:

sudo apt-get install pepperflashplugin-nonfree
sudo update-pepperflashplugin-nonfree --install

Restart Crhomium.

Elin Y.
  • 889
  • 9
  • 23
1

Sorry, I'm unable to comment because I'm new to Ask Ubuntu. The accepted answer is not accurate any more because Google stopped packaging flash player with its deb/rpm bundle. Go to Adobe download page here: http://get.adobe.com/flashplayer/otherversions/

Choose PPAPI version and download archive. You will find libpepflashplayer.so and mainfest.json required for following instructions in the accepted answer there.

Akilan
  • 111
0

Try copying the libflashplayer.so from /opt/google/chrome/PepperFlash to /usr/lib/chromium-browser/plugins.

Eliah Kagan
  • 119,640
DavidS
  • 1
0

As stated by thangdc94,pepperflashplugin-nonfree is now deprecated and one should use adobe-flashplugin instead.

This works for a recent version of Chromium (version 62).

  1. Install adobe-flashplugin package

    sudo apt install adobe-flashplugin
    
  2. Open chromium and go to address chrome://settings/content/flash. Make sure that the switch Ask first (recommended) is activated. If flash is still not working on some sites, you may need to whitelist them by addind their address to the Allow list.

teekarna
  • 103
  • 3
-1

There in no need to use flash from Google Chrome. You can simply install it from command line.

sudo apt-get install flashplugin-installer

Wait until finished. Then restart your browser and enjoy.

ScareCrow
  • 134