Skip to content

Instantly share code, notes, and snippets.

@souenzzo
Created July 15, 2015 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save souenzzo/a312f7e7454037d39243 to your computer and use it in GitHub Desktop.
Save souenzzo/a312f7e7454037d39243 to your computer and use it in GitHub Desktop.
The simplest way to install/remove flash in userland
## To install
mkdir -p ~/.mozilla/plugins/ && curl -s "http://fpdownload.macromedia.com/get/flashplayer/pdc/$(curl -s 'https://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html' | grep -o '11\.2\(\.[0-9]\{3\}\)\{2\}' | sort | tail -1)/install_flash_player_11_linux.x86_64.tar.gz" | tar -x -z -C "$HOME/.mozilla/plugins/" "libflashplayer.so"
## To remove
rm ~/.mozilla/plugins/libflashplayer.so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment