CentOS系统yum源配置修改、yum安装软件包源码包出错解决办法!

文章来源:

  1. CentOS系统yum源配置修改、yum安装软件包源码包出错解决办法!

  2. yum源使用的几个报错小总结 

yum安装包时报错:

1

2

3

4

5

6

7

Could not retrieve mirrorlist http://mirrorlist.repoforge.org/el6/mirrors-rpmforge error was

14: PYCURL ERROR 7 - "couldn't connect to host"

http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/repodata/repomd.xml: [Errno 14] 

PYCURL ERROR 7 - "couldn't connect to host"

Trying other mirror.

Error: Cannot retrieve repository metadata (repomd.xml) for repository: rpmforge. 

Please verify its path and try again

解决办法:

1、下载新的CentOS-Base.repo 到/etc/yum.repos.d/【版本是5.*的下载5、6.*下载6、7.*下载7】

5.*的下载连接:

1

[root@localhost ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

6.*的下载连接:

1

[root@localhost ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

7.*的下载连接:

1

[root@localhost ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

2、下载完成后,就开始执行以下命令:

然后执行以下命令:
           [root@bastion-IDC yum.repos.d]# rpm -e rpmforge-release --nodeps
           -------------------------------------------------------------------------------------------------------------
           如果报错:
           error: package rpmforge-release is not installed

解决办法:安装这个源
           下载地址:链接:https://pan.baidu.com/s/1URGP7XI9a60HtQJ0-yZsRg 
           提取密码:p9i2 

3、然后执行以下命令:

1

2

3

4

5

[root@localhost ~]# rpm -e rpmforge-release --nodeps

[root@localhost ~]# yum clean all 

[root@localhost ~]# yum update

猜你喜欢

转载自blog.csdn.net/zuoyouzouzou/article/details/85958777