Centos

在 CentOS 中安裝Google瀏覽器

  • July 19, 2018

我在 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

我想在 VM 中安裝 Google Chrome,並閱讀了網頁上的說明:

它通知執行以下命令:

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

$ sudo yum install -y ${URL}

稍後從終端啟動Google瀏覽器,

$ 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

這裡有什麼問題以及如何解決?

$ uname -i
i386

這是一個 32 位系統。32 位 Google Chrome 不再更新。

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

這是一個 64 位軟體包。

替代選項

Vivaldi 瀏覽器,相對較新的瀏覽器,但仍會定期更新為 32 位

引用自:https://unix.stackexchange.com/questions/457130