CentOS 中的谷歌浏览器
Posted
技术标签:
【中文标题】CentOS 中的谷歌浏览器【英文标题】:Google Chrome in CentOS 【发布时间】:2015-02-08 15:18:31 【问题描述】:在 CentOS 6.5 中,我想安装 Google Chrome,但我遇到了问题。
我了解到这主要是因为 Google 正在使用最新的 Linux 构建系统,这些系统会生成向后不兼容的二进制文件。
【问题讨论】:
【参考方案1】:1) 启用 Google YUM 存储库:
将以下内容添加到/etc/yum.repos.d/google.repo
文件:
对于 32 位
[google]
name=Google - i386
baseurl=http://dl.google.com/linux/rpm/stable/i386
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
对于 64 位
[google64]
name=Google - x86_64
baseurl=http://dl.google.com/linux/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
2) 使用 YUM 安装 Google Chrome(以 root 用户身份)
yum install google-chrome-stable
【讨论】:
【参考方案2】:复制并运行这一行:
curl https://intoli.com/install-google-chrome.sh | bash
【讨论】:
【参考方案3】:虽然在 CentOS 7 中添加 Google Chrome 存储库可以工作,但最初的问题提到了 CentOS 6.5,因此对于旧的(但仍受支持)平台来说,仅 yum 存储库本身并不够好。
Google 在 Linux 上构建他们的谷歌 Chrome 浏览器时确实使用了太“新”的编译器工具,导致在 CentOS 6 中完全可以避免的 libstdc++ 兼容性问题。正确的答案是下载并运行我从该站点编写的脚本http://chrome.richardlloyd.org.uk/ 但请注意,您必须至少升级到 CentOS 6.6 才能运行它。
【讨论】:
【参考方案4】:这会在任何 RHEL/CentOS/Amazon Linux 变体上安装 Chrome。
curl https://intoli.com/install-google-chrome.sh | bash
更多详情请参考:https://intoli.com/blog/installing-google-chrome-on-centos/
【讨论】:
【参考方案5】:对于 linux rpms,您可以在此处找到特定版本的 Chrome: https://dl.google.com/linux/rpm/stable/x86_64/google-chrome-stable-CHROME_VERSION.x86_64.rpm
将 CHROME_VERSION 替换为您要查找的版本,例如86.0.4240.198-1
【讨论】:
以上是关于CentOS 中的谷歌浏览器的主要内容,如果未能解决你的问题,请参考以下文章