Get pepper flash plugin
We need pepper flash plugin to get flash working under Firefox or Chromium.
There is no pepper flash plugin for raspberry pi 2 so we need to extract it from another device or download it from internet.
If you want to extract it, I wrote a tutorial for that :
Alternatively if you don't want to extract it, you can download it :
wget DL.FREE.FR -O pepper-flash-v20.0.0.228-r1.tar.xz
Check the sha1 :
echo "e320d3b9003476b82576bb303c11a75291c674c7 pepper-flash-v20.0.0.228-r1.tar.xz" | sha1sum -c -
You must have :
pepper-flash-v20.0.0.228-r1.tar.xz: OK
If you don't the archive is corrupted or hacked !
Extract and copy the files of the archive :
tar Jxvf pepper-flash-v20.0.0.228-r1.tar.xz
cd pepper-flash
sudo mkdir /usr/lib/PepperFlash
sudo cp * /usr/lib/PepperFlash
Firefox
Install fresh pepper flash plugin :
sudo apt-get install browser-plugin-freshplayer-pepperflash
restart firefox and enjoy
Chromium
Edit the file /etc/chromium-browser/default :
sudo pluma /etc/chromium-browser/default
Then change CHROMIUM_FLAGS= by :
CHROMIUM_FLAGS="--ppapi-flash-path=/usr/lib/PepperFlash/libpepflashplayer.so --ppapi-flash-version=20.0.0.228-r1"
Save the file.
restart chromium and enjoy
Aworan