Flash player no Scientific Linux 6.5

1

Depois de um:

yum install -y flash-plugin

e um

USERNAME="USERNAMEHERE"; mkdir -p "/home/$USERNAME/.firefox/plugins"; ln -s "/usr/lib64/flash-plugin/libflashplayer.so" "/home/$USERNAME/.firefox/plugins"

Eu sempre pude instalar o Flash Player para o Scientific Linux. Mas agora, após uma nova instalação do Scientific Linux 6.5 .. eu faço o mesmo, mas no about: plugins não existe nenhum ...

Minha queston : Por quê? o que estou perdendo?

ATUALIZAÇÃO: sim, o Firefox também é de 64 bits: é de:

https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/latest/linux-x86_64/en-US/
    
por evachristine 07.03.2014 / 21:39

1 resposta

1

Eu finalmente descobri no fim de semana, a principal solução foi colocar o libflashplayer.so no diretório bom .. e o diretório era: "/ usr / lib / mozilla / plugins" ... então não é o firefox / plubins ..

um pouco mais adiante, instalando o Firefox corretamente:

# I used it after: 
yum --releasever=6.5 update
# use BleachBit regularly!

#############################################
# 1) cd to home dir
cd

#############################################
# 2) download firefox
lynx -dump https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/latest/linux-x86_64/en-US/ | awk '/.tar.bz2/ && /https/ {print $2}' | xargs -I {} wget {} -O firefox.tar.bz2

#############################################
# 3) extract it, if there was an old one, rename it..
mv .firefox .firefox-OLD-'date +%F'; mv .mozilla .mozilla-OLD-'date +%F'; tar -xjf firefox.tar.bz2; mv "firefox" ".firefox"; rm firefox.tar.bz2

#############################################
# 4) install rpmforge to get flash in the repositories + install flash
# ONLY THESE LINES NEEDED TO BE RUN BY ROOT
yum install -y rpmforge-release; ln -s "/usr/lib64/flash-plugin/libflashplayer.so" "/usr/lib/mozilla/plugins"

#############################################
# 5) configure firefox (BY HAND)
# main: home page, download place
# tabs: no warnings
# applications: always ask ALL
# privacy: don't track, don't remember history, delete all history, don't suggest anything
# advanced: NO auto/smooth scrolling, NO spell checking, DON'T check if browser is default, DON'T let any statistics to send, etc. certificates: tick in OCSP as mandatory

# Add-ons
https://addons.mozilla.org/en-US/firefox/addon/wot-safe-browsing-tool
https://addons.mozilla.org/en-US/firefox/addon/adblock-plus
https://www.eff.org/https-everywhere
https://addons.mozilla.org/en-US/firefox/addon/google-ssl-243978

extras: 
https://addons.mozilla.org/en-US/firefox/addon/ghostery
https://addons.mozilla.org/en-US/firefox/addon/cookie-whitelist-with-buttons
https://addons.mozilla.org/en-US/firefox/addon/noscript
https://addons.mozilla.org/en-US/firefox/addon/requestpolicy

#############################################
# 6) 
about:config

app.update.silent
true

network.dns.disableIPv6
true

browser.download.manager.scanWhenDone
false

browser.sessionstore.max_tabs_undo
1

browser.sessionstore.max_windows_undo
1

geo.enabled
false

network.http.sendRefererHeader
0

pdfjs.disabled
true

noscript.showPermanent
false

plugin.state.flash
1

# useragent: 
New -> String
general.useragent.override
Mozilla/5.0 (X11; x86_64; rv:27.0) Gecko/20100101 Firefox/27.0

#############################################
7) disable flash cookies. Go to
https://www.youtube.com/
right click a flash element
Right click -> Global Settings... -> Storage TAB -> Block all sites from storing information on this computer
Camera and Mic TAB -> Block all sites from using the camera and microphone
Playback -> Block all sites from using peer-assisted networking

#############################################
    
por 09.03.2014 / 10:25