我正在尝试在centOS 6.i中安装chromium。我以超级用户身份运行以下命令。
cd /etc/yum.repos.d/
wget http://repos.fedorapeople.org/repos/spot/chromium/fedora-chromium-stable.repo。但是当我运行命令yum install chromium时
它给了我错误
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
* base: mirrors.vonline.vn
* extras: mirrors.digipower.vn
* updates: mirror.vietoss.com
http://repos.fedorapeople.org/repos/spot/chromium-stable/fedora-6/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
Trying other mirror.
Setting up Install Process
No package chromium available.
Error: Nothing to do请帮助解决这个问题。
发布于 2014-02-07 16:54:54
执行以下命令(具有root或sudoers权限)
cd /etc/yum.repos.d ##Moving to a certain directory
wget http://people.centos.org/hughesjr/chromium/6/chromium-el6.repo ##Download the chromium package
yum install chromium ##Install the chromium packages in the mentioned directory发布于 2018-10-16 00:49:20
回答晚了,这不是我想要的解决方案,但我已经在CentOS 7上安装了Chrome,使用:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
sudo yum install google-chrome-stable_current_x86_64.rpm最新的谷歌浏览器不再支持6.x。您需要CentOS 7.x。
发布于 2020-01-17 07:40:48
https://discuss.tutorialdba.com/852/install-epel-repository-centos解释了如何在CentOS 8上安装Chromium,如果你需要的话。
如果
sudo dnf --disablerepo="*" --enablerepo="epel" list available | grep chromium
确认您已经安装了epel,并且铬元素可用,然后运行
sudo dnf --enablerepo="epel" install chromium
以成功执行安装。
https://stackoverflow.com/questions/21623131
复制相似问题