一、先有一個hosts能訪問Google
參考:http://www.cnblogs.com/EasonJim/p/5999060.html
二、安裝方法有兩種,如下所示:
1、下載deb包(推薦)
#下載 wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb #安裝 sudo dpkg -i google-chrome-stable_current_amd64.deb
提示:如果安裝時出現:“正在處理用於 man-db (2.7.5-1) 的觸發器 ...在處理時有錯誤發生:google-chrome-stable”這樣的錯誤,運行下面命令行
sudo apt-get -f install
然后再安裝。
當然,還有GUI的處理方法,比如安裝GDebi軟件包安裝程序,然后在這個deb包右鍵,打開方式->GDebi軟件包安裝程序。
2、添加Google Chrome的PPA方式
#安裝Google Chrome瀏覽器官方PPA,打開終端然后運行下面的命令,下載簽名密鑰: wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' sudo apt-get update sudo apt-get install google-chrome #安裝Google Chrome unstable 版本: sudo apt-get install google-chrome-unstable
參考:
http://blog.csdn.net/sdujava2011/article/details/50880663
http://blog.csdn.net/eland_edwiin/article/details/8177997