centos7安裝谷歌瀏覽器及解決google-chrome無法啟動
\2. 安裝
[
root@wilber ~]#
rpm-ivh
google-chrome-stable_current_x86_64
.rpm
注:若報錯缺少依賴包,則yum install -y 安裝好對應的依賴包再安裝google-chrome(若是有包則可以直接yun -y install +包名)
\3. 新增google-chrome快捷方式到桌面
複製到桌面後是乙個檔案 「google-chrome.desktop」
直接雙擊執行,彈出的對話方塊選 「trust and launch」 即可啟動,檔案變為google chrome的圖示
問題表現:
雙擊google chrome圖示無反應,無法開啟瀏覽器。
在命令列開啟報錯:
[root@wilber ~]
# /usr/bin/google-chrome (執行一下這行**開啟google)
[5024:5024:0113/164154.164753:error:zygote_host_impl_linux.cc(89)
] running as root without --no-sandbox is not supported.
see
解決方法:
(1)`
[
root@wilber ~]#
/usr
/bin
/google-chrome
--no-sandbox
//新增–no-sandbox後即可啟動瀏覽器
或是直接vim /usr/bin/google-chrome在最後面新增:exec -a "$0"
"$here/chrome"
"$@" --no-sandbox --user-data-dir
(2)桌面圖示右擊-->屬性-->啟動命令後新增「--no-sandbox」
即:/usr/bin/google-chrome-stable %u
--no-sandbox
[root@wilber ~]
修改:exec=/usr/bin/google-chrome-stable %u
為:exec=/usr/bin/google-chrome-stable %u
--no-sandbox
ok!
Centos7 安裝谷歌瀏覽器
cd etc yum.repos.d vim google chrome.repo google chrome name google chrome baseurl enabled 1 gpgcheck 1 gpgkey 安裝yum y install google chrome stable no...
Centos7之安裝谷歌瀏覽器
cd downloads 拉去安裝包 wget 安裝 rpm ivh google chrome stable current x86 64.rpm 注 若報錯缺少依賴包,則yum install y 安裝好對應的依賴包再安裝google chrome 如果使用rpm安裝有依賴包缺少就是用yum 安...
CentOS7安裝Chrome瀏覽器
首先建立google chrome的yum安裝倉庫檔案 etc yum.repos.d google chrome.repo 檔案內容如下 google chrome name google chrome baseurl enabled 1 gpgcheck 1 gpgkey 配置好了倉庫之後就可以...