首頁 > 軟體

CentOS 6.5全新安裝Firefox45.2瀏覽器指令碼

2020-06-16 17:09:20

CentOS 6.5x86_64系統中自帶的是firefox 17版,版本太低,由於騰訊雲實驗室需要在firefox瀏覽器45版或45版以上的版本來支援,否則無法進入騰訊雲實驗室環境。而很多朋友想在CentOS 6.5上安裝新版本,卻無法安裝成功。在此給大家分享一鍵安裝指令碼。經過測試,此指令碼能正常使用。

此指令碼是在centos 6.5x86_64位元版系統上下載並全新安裝一個firefox45.0.2版到/usr/local/firefox目錄,並在當前使用者家目錄建立firefox軟體圖示,
#並且不影響舊的firefox17版的使用。
#注意:Centos 6.5只能支援到firefox45.0.2版,如果想升級到firefox55版,需要升級系統的lib庫檔案,否則無法正常開啟firefox新版本。
firefox45.0軟體官方下載:
https://ftp.mozilla.org/pub/firefox/releases/45.0/linux-x86_64/zh-CN/firefox-45.0.tar.bz2

firefox45.0.2軟體官方下載:
https://ftp.mozilla.org/pub/firefox/releases/45.0.2/linux-x86_64/zh-CN/firefox-45.0.2.tar.bz2

指令碼思路:
1、用weget從firefox官網下載firefox-45.0.2.tar.bz2軟體包。
2、用指令碼解壓tar包到/usr/local目錄。
3、用cat命令在當前使用者的家目錄中生成firefox45的圖示檔案,方便使用者後期使用。
說明:桌面圖示檔案,也可以在桌面點滑鼠右鍵,新建啟動器。按下圖操作。

第1步,建立指令碼檔案。(可以直接將以下指令碼內容直接複製使用)
vi  firefox452_install.sh  指令碼內容如下
#!/bin/bash
#script  by  12700696@qq.com
#date : 2017-08-13 20:30
#說明:此指令碼是在centos 6.5版系統上下載並全新安裝一個firefox45.0.2版到/usr/local/firefox目錄,並在當前使用者家目錄建立firefox軟體圖示,
#並且不影響舊的firefox17版的使用。
#注意:Centos 6.5只能支援到firefox45.0.2版,如果想升級到firefox55版,需要升級系統的lib庫檔案,否則無法正常開啟firefox新版本。
#以下是從官網下載firefox-45.0.2.tar.bz2版本的軟體包,然後解壓到指定目錄。
wget https://ftp.mozilla.org/pub/firefox/releases/45.0.2/linux-x86_64/zh-CN/firefox-45.0.2.tar.bz2
[ -f firefox-45.0.2.tar.bz2 ] && tar -xvf firefox-45.0.2.tar.bz2 -C /usr/local/ || echo  'firefox not found'
#以下是生成firefox45圖示檔案。
cat > ~/firefox45.desktop <<-EOF
#!/usr/bin/env xdg-open

[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Firefox45 Web Browser
Name[ca]=Navegador web Firefox
Name[cs]=Firefox Webovy prohlíe
Name[es]=Navegador web Firefox
Name[fa]=  Firefox
Name[fi]=Firefox-selain
Name[fr]=Navigateur Web Firefox
Name[hu]=Firefox webbngész
Name[it]=Firefox Browser Web
Name[ja]=Firefox ウェブブラウザ
Name[ko]=Firefox
Name[nb]=Firefox Nettleser
Name[nl]=Firefox webbrowser
Name[nn]=Firefox Nettlesar
Name[no]=Firefox Nettleser
Name[pl]=Przegldarka WWW Firefox
Name[pt]=Firefox Navegador Web
Name[pt_BR]=Navegador Web Firefox
Name[sk]=Internetovy prehliada Firefox
Name[sv]=Webblsaren Firefox
GenericName=Web Browser
GenericName[ca]=Navegador web
GenericName[cs]=Webovy prohlíe
GenericName[es]=Navegador web
GenericName[fa]=
GenericName[fi]=WWW-selain
GenericName[fr]=Navigateur Web
GenericName[hu]=Webbngész
GenericName[it]=Browser Web
GenericName[ja]=ウェブブラウザ
GenericName[ko]=
GenericName[nb]=Nettleser
GenericName[nl]=Webbrowser
GenericName[nn]=Nettlesar
GenericName[no]=Nettleser
GenericName[pl]=Przegldarka WWW
GenericName[pt]=Navegador Web
GenericName[pt_BR]=Navegador Web
GenericName[sk]=Internetovy prehliada
GenericName[sv]=Webblsare
Comment=Browse the Web
Comment[ca]=Navegueu per el web
Comment[cs]=Prohlíení stránek World Wide Webu
Comment[de]=Im Internet surfen
Comment[es]=Navegue por la web
Comment[fa]=
Comment[fi]=Selaa Internetin WWW-sivuja
Comment[fr]=Navigue sur Internet
Comment[hu]=A világháló bngészése
Comment[it]=Esplora il web
Comment[ja]=ウェブを閲覧します
Comment[ko]=
Comment[nb]=Surf p nettet
Comment[nl]=Verken het internet
Comment[nn]=Surf p nettet
Comment[no]=Surf p nettet
Comment[pl]=Przegldanie stron WWW
Comment[pt]=Navegue na Internet
Comment[pt_BR]=Navegue na Internet
Comment[sk]=Prehliadanie internetu
Comment[sv]=Surfa p webben
Exec=/usr/local/firefox/firefox %u
Icon=firefox
Terminal=false
Type=Application
StartupWMClass=Firefox-bin
MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;
StartupNotify=true
X-Desktop-File-Install-Version=0.15
Categories=Network;WebBrowser;

EOF
chmod  +x  firefox452.desktop
#指令碼編寫完畢。請執行第2步操作。

第2步:新增執行許可權,並執行指令碼。
chmod  +x  firefox452_install.sh
sh  firefox452_install.sh

第3步:開啟新版的firefox軟體。
首先,進入當前使用者的家目錄。
然後,雙擊家目錄中的firefox軟體圖示,進入firefox軟體介面。
最後,在位址列中輸入www.linuxidc.com回車,存取到網站資源,說明軟體安裝成功並且能正常使用了。

說明:指令碼原始檔附件下載後,請將txt字尾修改成sh,或直接用sh執行txt檔案來進行安裝。

============================
filename.desktop圖示檔案格式應用說明:
自裝軟體預設安裝目錄為 /usr/local
而生成的應用程式可執行圖示(檔案)放置在/usr/local/share/applications  目錄下,以XXX.desktop 檔案形式存在。

以xxx.desktop為例,用vim開啟檔案內容如下:

[Desktop Entry]
Encoding=UTF-8
Name=xxx
//可執行檔案
Exec=sh  /usr/local/src/xxx/target/build/bin/startup.sh      //.sh可執行檔案的絕對路徑, 前面的sh 命令不要丟哦
Icon=/usr/local/share/icons/jesh.png  //圖示圖片路徑,更改這裡即可
Info="Spark"
Categories=GTK;Network;message; //可寫可不寫

Comment="Gtk+ based like QQ"  //提示性資訊 ,可寫可不寫

Terminal=false
Type=Application
StartupNotify=true

所以為xxx.sh 可執行檔案建立桌面可執行圖示xxx.png,
只需要先在桌面新建一個XXXX.desktop檔案,然後複製上面的內容把  Exec=sh  /usr/local/src/xxx/target/build/bin/startup.sh  中的startup.sh更換成xxx.sh,並把  Icon=/usr/local/share/icons/jesh.png  換成  Icon=  xxx.png的檔案路徑  即可。

相關檔案可以到Linux公社資源站下載:

------------------------------------------分割線------------------------------------------

免費下載地址在 http://linux.linuxidc.com/

使用者名稱與密碼都是www.linuxidc.com

具體下載目錄在 /2017年資料/8月/15日/CentOS 6.5全新安裝Firefox45.2瀏覽器指令碼/

下載方法見 http://www.linuxidc.com/Linux/2013-07/87684.htm

------------------------------------------分割線------------------------------------------

本文永久更新連結地址http://www.linuxidc.com/Linux/2017-08/146259.htm


IT145.com E-mail:sddin#qq.com