天天看點

Centos7 安裝 chrome 浏覽器

1. 配置yum源

在 /etc/yum.repos.d/ 目錄下建立repo檔案 google-chrome.repo

cd /ect/yum.repos.d/
vim google-chrome.repo
           

寫入如下内容并儲存:

[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub        
           

 2. 安裝google chrome浏覽器

yum -y install google-chrome-stable
           

 Google官方源可能在中國無法使用,導緻安裝失敗或者在國内無法更新,可以添加以下參數來安裝:

yum -y install google-chrome-stable --nogpgcheck
           

  2. 運作chrome浏覽器

找到chrome路徑,并做個軟連接配接,友善使用:

which google-chrome-stable
ln -s xxx /bin/chrome (xxx 為 google-chrome-stable 的路徑)
           

用root使用者啟動chrome示例時會提示添加參數–no-sandbox

chrome --no-sandbox
           

繼續閱讀