在 CentOS 中安装 Google Chrome

在 CentOS 中安装 Google Chrome

我在 Mac OS 机器上运行 CentOS 6.3 版本的 32 位 VM。我从终端获取这些信息,

$ uname -a 
Linux Cloudera-Training-VM-4.1.1.c 2.6.32-279.14.1.el6.i686 #1 SMP Tue Nov 6 21:05:14 UTC 2012 i686 i686 i386 GNU/Linux

$ uname -i
i386

$ cat /etc/issue

CentOS release 6.3 (Final)
Kernel \r on an \m

我想在虚拟机中安装 Google Chrome,并阅读了来自网页:

它通知运行以下命令:

$ URL=https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

$ sudo yum install -y ${URL}

稍后从终端启动 Google Chrome,

$ google-chrome-stable

当我运行sudo yum install -y ${URL}命令时,我得到下面提供的输出,

Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
 * base: mirror.dhakacom.com
 * extras: mirror.dhakacom.com
 * updates: mirror.dhakacom.com
http://dl.google.com/linux/chrome/rpm/stable/i386/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404"
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: google-chrome. Please verify its path and try again

这里有什么问题以及如何解决它?

答案1

$ uname -i
i386

这是一个 32 位系统。 32 位 Google Chrome 不再更新。

URL=https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

这是一个 64 位包。

替代方案

维瓦尔第浏览器,相对较新的浏览器,但仍定期更新 32 位

相关内容