最近在使用CentOS5.5的时候yum安装文件出现如下错误:
Error: failure: repodata/filelists.xml.gz from addons: [Errno 256] No more mirrors to try.
解决方法:
yum clean all
CentOS更换网易源
1、下载新源及将本地源备份
[[email protected] ~]# cd /etc/yum.repos.d/
[[email protected] ~]# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
[[email protected] ~]# mv CentOS-Base.repo CentOS-Base.repo.bak
[[email protected] ~]# mv CentOS6-Base-163.repo CentOS-Base.repo
2、yum源更新
[[email protected] ~]# yum clean all && yum makecache && yum update -y
3、完成
yum 命令工具使用举例
1、升级系统
[[email protected] ~]#yum update
2、安装指定的软件包
[[email protected] ~]# yum -y install mysql-server
3、升级指定的软件包
[[email protected] ~]# yum -y update mysql
4、卸载指定的软件包
[[email protected] ~]# yum -y remore mysql
5、查看系统中已经安装的和可用的软件组,对于可用的软件组,你可以选择安装
[[email protected] ~]# yum grouplist
6、安装上一个命令中显示的可用的软件组中的一个软件组
[[email protected] ~]# yum -y groupinstall Emacs
7、更新指定软件组中的软件包
[[email protected] ~]# yum -y groupupdate Emacs
8、卸载指定软件组中的软件包
[[email protected] ~]# yum -y groupremove Emacs
9、清除缓存中的rpm 头文件和包文件
[[email protected] ~]# yum clean all
10、搜索相关的软件包
[[email protected] ~]# yum -y search Emacs
11、显示指定软件包的信息
[[email protected] ~]# yum info Emacs
12、查询指定软件包的依赖包
[[email protected] ~]# yum deplist emacs
13、列出所有以 yum 开头的软件包
[[email protected] ~]# yum list yum\*
14、列出已经安装的但是不包含在资源库中的rpm 包
[[email protected] ~]# # yum list extras