我对 Linux 管理还比较陌生。我安装了 Centos 6.5(在 Win7pro 系统上的 VirtualBox 下)。当我尝试使用 yum 将 gcc 安装到系统时,我得到了以下结果:
[root@localhost etc]# yum clean all
Loaded plugins: fastestmirror, refresh-packagekit, security
Cleaning repos: Dropbox base extras updates
Cleaning up Everything
Cleaning up list of fastest mirrors
[root@localhost etc]# yum install gcc
Loaded plugins: fastestmirror, refresh-packagekit, security
Determining fastest mirrors
* base: mirrors.tummy.com
* extras: mirrors.cat.pdx.edu
* updates: centos.mirror.freedomvoice.com
http://linux.dropbox.com/fedora/6/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: Dropbox. Please verify its path and try again
linux.dropbox.com/fedora/6 子目录似乎不存在。有人能给我一些提示/答案吗?
答案1
我遇到了上述问题并使用了这个博客(http://notepad2.blogspot.de/2013/08/install-dropbox-on-centos-linux.html)使用以下命令成功整理。
# cat /etc/yum.repos.d/dropbox.repo
旧存储库:
[Dropbox]
name=Dropbox Repository
baseurl=http://linux.dropbox.com/fedora/$releasever/
gpgkey=https://linux.dropbox.com/fedora/rpm-public-key.asc
此外,我将当前的存储库从上面改为下面,就是这样。
新建存储库
[Dropbox]
name=Dropbox Repository
#baseurl=http://linux.dropbox.com/fedora/$releasever/
baseurl=http://linux.dropbox.com/fedora/19/
gpgkey=http://linux.dropbox.com/fedora/rpm-public-key.asc
答案2
查看
http://notepad2.blogspot.de/2013/08/install-dropbox-on-centos-linux.html
应该将 /etc/yum.repos.d/dropbox.repo 或 /etc/yum.conf 中的 $releasever 参数更改为“19”
哈,
亚历克斯