Instalação e desinstalação do Flash Player
Publicado por Felipe Ruiz Peixoto (última atualização em 14/07/2015)
[ Hits: 2.481 ]
Homepage: https://www.ubuntu.com/
Download install_flash_11_targz.sh
Olá pessoal, a instalação do Flash Player é até fácil, mas eu sou preguiçoso e gosto de tudo automatizado por scripts. Por isso eu criei este script que ajuda na instalação e desinstalação do Flash Player no seu browser.
No momento ele só funciona com o Mozilla Firefox, mas eu escrevi este script de forma que facilita a implementação de outros browsers.
#!/bin/bash # # install_flash_11_targz.sh # Felipe Ruiz <feliperuiz.sax.eletronic@gmail.com> # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, # MA 02110-1301, USA. # if [ "`id -u`" -eq 0 ] then echo 'This script will install (or uninstall) flash player 11 in your' echo browser. Please select your option: echo '1 -> Install in Firefox' echo '2 -> Install in Firefox .tar.gz' echo '3 -> Uninstall in Firefox' echo '4 -> Uninstall in Firefox .tar.gz' read browser case "$browser" in # Installing in Firefox 1 ) clear echo ' Installing libflashplayer.so [0%]' echo Download the firefox .tar.gz package at https://www.mozilla.org/ echo and extract the package in your computer. Then insert the echo 'location (full path) of the firefox folder here:' read firefoxfolder clear echo ' Installing libflashplayer.so [33%]' echo Download the flash player .tar.gz package at echo 'http://get.adobe.com/flashplayer/completion/?installer=Flash_Player_10.2_for_Linux_%28.tar.gz%29' echo and extract the package in your computer. Then insert the echo 'location (full path) of the file "libflashplayer.so" here:' read libflashplayer clear echo ' Installing libflashplayer.so [66%]' mv $libflashplayer /usr/lib/mozilla/plugins clear echo ' Installing libflashplayer.so [100%]' echo 'Installed, press [Return] to exit' read nothing ;; # Installing in Firefox folders from .tar.gz package 2 ) clear echo ' Installing libflashplayer.so [0%]' echo Download the firefox .tar.gz package at https://www.mozilla.org/ echo and extract the package in your computer. Then insert the echo 'location (full path) of the firefox folder here:' read firefoxfolder clear echo ' Installing libflashplayer.so [20%]' echo Download the flash player .tar.gz package at echo 'http://get.adobe.com/flashplayer/completion/?installer=Flash_Player_10.2_for_Linux_%28.tar.gz%29' echo and extract the package in your computer. Then insert the echo 'location (full path) of the file "libflashplayer.so" here:' read libflashplayer clear echo ' Installing libflashplayer.so [40%]' cp $libflashplayer $firefoxfolder clear echo ' Installing libflashplayer.so [60%]' cp $libflashplayer /usr/lib/mozilla/plugins clear echo ' Installing libflashplayer.so [80%]' mv $libflashplayer $firefoxfolder'/components' clear echo ' Installing libflashplayer.so [100%]' echo 'Installed, press [Return] to exit' read nothing ;; # Uninstalling from Firefox 3 ) clear echo ' Uninstalling libflashplayer.so [0%]' echo 'Are you sure about uninstalling flash player? [Y or N]' read answer if [ "$answer" == 'Y' ] then clear echo ' Uninstalling libflashplayer.so [50%]' rm '/usr/lib/mozilla/plugins/libflashplayer.so' clear echo ' Uninstalling libflashplayer.so [100%]' echo 'Uninstalled.' fi echo 'Press [Return] to exit' read nothing ;; # Uninstalling from firefox folders from .tar.gz package 4 ) clear echo ' Uninstalling libflashplayer.so [0%]' echo 'Are you sure about uninstalling flash player? [Y or N]' read answer if [ "$answer" == 'Y' ] then clear echo ' Uninstalling libflashplayer.so [20%]' echo 'Insert the location (full path) of the firefox folder here:' read firefoxfolder clear echo ' Uninstalling libflashplayer.so [40%]' rm $firefoxfolder'/libflashplayer.so' clear echo ' Uninstalling libflashplayer.so [60%]' rm /usr/lib/mozilla/plugins/libflashplayer.so clear echo ' Uninstalling libflashplayer.so [80%]' rm $firefoxfolder'/components/libflashplayer.so' clear echo ' Uninstalling libflashplayer.so [100%]' echo 'Uninstalled.' fi echo 'Press [Return] to exit' read nothing ;; * ) echo Invalid option ;; esac else echo "This script needs superuser permissions, please input your password:" su -c "./install_flash_11_targz.sh" fi
Habilitar e Desabilitar a Touchscreen
Script em Xdialog para montar/desmontar dispositivos
Backup simples com log de resultado
Instalar e Configurar o Slackware Linux em 2025
Como configurar os repositórios do apt no Debian 12 em 2025
Passkeys: A Evolução da Autenticação Digital
Instalação de distro Linux em computadores, netbooks, etc, em rede com o Clonezilla
Como colorir os logs do terminal com ccze
Instalação Microsoft Edge no Linux Mint 22
Como configurar posicionamento e movimento de janelas no Lubuntu (Openbox) com atalhos de teclado
Máquinas Virtuais com IP estático acessando Internet no Virtualbox
Criar entrada no GRUB para uma ISO Linux (7)
Open Suse não abre wi-fi automaticamente (3)
Ruído no Microfone (ALC287 - AMD Ryzen 5 7535HS) no Debian 12.9 (15)