Yum工具管理RPM软件包
- yum源的分类:
分类:本地yum和远程yum
本地yum:file://
远程yum:
http://10.18.44.196/…
ftp://10.18.44.196/… - 配置yum源
Yum源:
提供软件仓库
挂载镜像到本地目录/mnt/rhe16u4
[root@qfedu.com ~]# mount -0 loop /rhe16u4. iso /mnt/rhe16u4(rhe16)
[root@qfedu.com ~]# mount /centos7u3.iso /mnt/centos7u3(rhe17)
如果是虚拟机,把iso镜像放到虚拟机的光驱里面去。开机连接
[root@qfedu.com ~]# mount /dev/cdrom /mnt/centos7u3
Yum客户端配置文件:
[root@qfedu.com ~]# cd /etc/yum. repos .d/
[root@qfedu.com ~]# rm -rf /etc/yum. repos.d/*
[root@qfedu.com ~]# vim yum. repo必须以. repo结尾
[rhe16-Server]yum源区别名称,用来区分其他的yum源
Yum工具详解
-
清理Yum缓存: [root@qfedu.com ~]# yum clean all
-
缓存软件包信息: [root@qfedu. com ~]# yum makecache(提高搜索/安装软件的速度)
-
查询yum源信息: [root@qfedu.com ~]# yum repolist
-
查找软件: [root@qfedu.com ~]# yum search mysql
此命令会搜索到系统已经安装和yum源里没有安装的软件信息,可以用他简单测试yum是否好用
5. 查看软件依赖性关系: [root@qfedu.com ~]# yum deplist
-
查看文件属于哪个软件:[root@qfedu.com ~]# yum provides.ld-linux.so.2
-
查看系统已经安装好的软件和没有安装的软件:
[root@qfedu.com ~]# yum list -
重装:
[root@qfedu.com ~]# yum reinstall+软件名
卸载软件:
[root@qfedu.com ~]# yum erase 软件名
[root@qfedu.com ~]# yum remove 软件名
配置阿里云yum源;
[root@qfedu.com ~]# wget -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo