如何在CentOS下安装谷歌浏览器

2024年11月28日 09:47
有2个网友回答
网友(1):

1、

wget http://chrome.richardlloyd.org.uk/install_chrome.sh

(用wget下载shell文件)

2、chmod u+x install_chrome.sh                                           (给文件授予权限)

3、 ./install_chrome.sh -s                   (用 ./ 命令执行sh文件,-s  表示安装的稳定版,之后等待数分钟就好了)

4、如果想卸载,则执行命令  yum remove google-chrome-stable  或者 ./install_chrome.sh -u  命令

5、执行以上命令需要在root权限下。

网友(2):

chrome安装
cat<>/etc/yum.repos.d/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
EOF

yum clean all
yum makecache

yum install google-chrome-stable