1.rpm包的安装过程:进入rpm包的所在目录,通过rpm -ivh 包名安装,rpm安装无法解决依赖关系
2.yum安装过程:读取/etc/yum.repo/下配置文件中的baseurl地址,找到该地址下的repodata/repomd.xml文件(配有依赖关系),读取安装目标所需要的所有安装包并安装。
可以自定义yum源,但是配置的yum源下需要有repodata/目录,自定义yum源需要用createrepo命令创建依赖关系,例如使用/test作为yum源,通过 createrepo /test创建,createrepo命令需要安装。
配置本地yum源
[name] name=*** baseurl=file://yum源路径 enabled=1 gpgcheck=0
配置网络yum源
[name] name=*** mirrorlist=http://yum源路径 enabled=1 gpgcheck=0
配置网络yum源时,rpm包会先下载到本地,默认安装完成后就删除,如果想要安装后不删除,可将/etc/yum.conf配置文件中的keepcache值修改为1,并通过cachedir指定缓存目录
[[email protected] repodata]# cat /etc/yum.conf [main] cachedir=/var/cache/yum/$basearch/$releasever keepcache=0 ……
yum clean all 清除yum缓存,修改了yum配置文件,再次使用yum安装前需要清除缓存
yum makecache 建yum缓存信息
原文地址:https://www.cnblogs.com/Forever77/p/9737658.html
时间: 2024-10-10 10:00:59