yum 安装软件时总出现提示问题的解决—centos 5.8 64bit

简介:

今天学习做实验时,因为需要用yum安装一些软件,但是在启动yum时总出现以下的提示:

?
1
2
3
4
5
6
7
8
9
[root@bogon ~] # yum install
Loaded plugins: fastestmirror, security
Repository base is listed  more  than once  in  the configuration
Repository updates is listed  more  than once  in  the configuration
Repository addons is listed  more  than once  in  the configuration
Repository extras is listed  more  than once  in  the configuration
Repository centosplus is listed  more  than once  in  the configuration
Repository contrib is listed  more  than once  in  the configuration
Loading mirror speeds from cached hostfile

虽然不影响使用,看着总不美观 。

在搜索引擎里搜索了一下, 也没有找到十分确切的解决办法,有一个细路不是看看repo文件是不是重复,根据提示,说明应该是配置的yum里有相同的命令。

我回想了一下,应该有这方面的问题 ,因为我为了加快yum的速度,除了系统配置好的以外,我还添加了 163,epel的源。

?
1
2
3
4
5
6
7
8
9
10
11
[root@bogon ~] # cd /etc/yum.repos.d/
[root@bogon yum.repos.d] # ll
鎬昏 36
-rw-r--r-- 1 root root 2341 2011-02-17 CentOS5-Base-163.repo --自己添加的
-rw-r--r-- 1 root root 2446 05-14 06:45 CentOS-Base.repo
-rw-r--r-- 1 root root 1926 2013-10-08 CentOS-Base.repo.ori
-rw-r--r-- 1 root root  636 2013-10-08 CentOS-Debuginfo.repo
-rw-r--r-- 1 root root  626 2013-10-08 CentOS-Media.repo
-rw-r--r-- 1 root root 7574 2013-10-08 CentOS-Vault.repo
-rw-r--r-- 1 root root  954 2010-08-12 epel.repo   --自己添加
-rw-r--r-- 1 root root 1054 2010-08-12 epel-testing.repo --自动与epel.repo一起安装的
?
1
  
?
1
我的解决办法是:把163的改名不让他起作用。
[root@bogon yum.repos.d]# mv CentOS5-Base-163.repo CentOS5-Base-163.repo.ori
[root@bogon yum.repos.d]# yum info
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
 * epel: mirrors.yun-idc.com

修改完成后,直接运行yum info,没有再出现这个问题。看来是解决了,

本文转自孤舟夜航之家博客51CTO博客,原文链接http://blog.51cto.com/cysky/1412145如需转载请自行联系原作者


cysky

相关文章
|
9天前
|
Linux
CentOs9 yum源出现404问题
CentOs9-stream yum源出现404问题
|
1月前
|
缓存 Linux
解决CentOS 7停止更新后yum源失效问题【图文教程】
以上步骤完成后,你的 CentOS 7 系统就会使用阿里云的 yum 源,更换yum以后就可以正常使用啦。
956 2
|
3月前
|
Linux 虚拟化 开发者
一键将CentOs的yum源更换为国内阿里yum源
一键将CentOs的yum源更换为国内阿里yum源
5716 8
|
5月前
|
关系型数据库 MySQL Linux
在CentOS上使用yum安装与使用MySQL
在CentOS操作系统上使用yum包管理器安装和配置MySQL数据库的详细步骤,包括下载MySQL的yum源配置、安装MySQL服务、启动和停止服务、设置开机自启动、获取临时密码、修改root用户密码、授权用户以及处理相关问题。同时,文章还包含了一些操作的截图,帮助用户更直观地理解安装和配置过程。
1537 0
在CentOS上使用yum安装与使用MySQL
|
5月前
|
Web App开发 缓存 Ubuntu
Linux中yum、rpm、apt-get、wget的区别,yum、rpm、apt-get常用命令,CentOS、Ubuntu中安装wget
Linux中yum、rpm、apt-get、wget的区别,yum、rpm、apt-get常用命令,CentOS、Ubuntu中安装wget
271 11
|
5月前
|
网络协议 Linux
CentOS7 yum安装报错“Could not resolve host: mirrorlist.centos.org;"之解决办法(换源)
CentOS7 yum安装报错“Could not resolve host: mirrorlist.centos.org; Name or service not known“之解决办法(换源)
|
4月前
|
Linux
centos使用阿里的yum源
centos使用阿里的yum源
|
5月前
|
缓存 Linux 网络安全
解决 CentOS 7 官方 yum 仓库无法使用的最佳实践
【8月更文挑战第18天】若 CentOS 7 的官方 YUM 仓库无法使用,可按以下步骤解决: 1. **检查网络连接**: - 确认服务器能正常上网,可通过访问外部网站或网络诊断测试。 - 检查防火墙设置,避免其阻挡 YUM 的网络访问。 2. **检查 YUM 配置**: - 核实 `/etc/yum.repos.d/` 下的 `CentOS-Base.repo` 文件中仓库地址正确无误。 - 确认配置文件内的 `enabled` 选项设为 `1` 以启用仓库。
2321 0
|
5月前
|
Linux Docker 容器
在CentOS操作系统上使用yum安装/使用/卸载Docker容器引擎
在CentOS操作系统上安装、配置、使用和卸载Docker容器引擎的详细步骤,包括配置Docker镜像加速的方法。
541 0
|
5月前
|
安全 Java 应用服务中间件
如何通过 Yum 在 CentOS 7 上安装 Apache Tomcat 7
如何通过 Yum 在 CentOS 7 上安装 Apache Tomcat 7
257 0