我有两个Centos系统,分别为6.6版本和7版本。
方法一:
在Centos7系统上,先更改repo源:
在/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
配置好Google Chrome浏览器Yum Repository好后,可以通过以下命令来安装Google Chrome浏览器:
# 安装Google Chrome稳定版本:
#yum install google-chrome-stable# 安装Google Chrome测试版本:
#yum install google-chrome-beta# 安装Google Chrome不稳定版本:
#yum install google-chrome-unstable
然后出错;
Is this ok [y/d/N]: y此时输入:
# yum --nogpgcheck localinstall /var/cache/yum/x86_64/7/google64/packages/google-chrome-stable-39.0.2171.99-1.x86_64.rpm安装成功!
注意我在Centos6.6中通过上述在Centos7的安装方法会报错提示:requires libstdc++.so.6(GLIBCXX_3.4.15),即使我按照网上的说法下载更高的libstdc++版本,然后通过ln -s 软连接后还是提示报这个错误,,为此我还重新安装了更高的GCC 4.9.2版本也是这样,很让人无奈,最后通过方法二在Centos6.6上成功。
方法二:
通过一下命令,我在Centos6.6下安装成功了Chrome浏览器:
# wget http://chrome.richardlloyd.org.uk/install_chrome.sh # chmod u+x install_chrome.sh # ./install_chrome.sh