yum的配置:
[[email protected] ~]# vim /etc/yum.repos.d/rhel7.repo
[rhel7-yum] #yum源名称,唯一的,用来区分不同的yum源
name=rhel7-source #对yum源描述信息
baseurl=file:///mnt #yum源的路径(repodata目录所在的目录)
enabled=1 #为1,表示启用yum源
gpgcheck=0 #为1,使用公钥检验rpm的正确性
[[email protected] ~]# yum clean all #清空yum缓存
[[email protected] ~]# yum list #生成缓存列表
[[email protected] ~]# yum install zsh #安装软件包
[[email protected] ~]# yum remove zsh #删除软件包
时间: 2024-10-07 15:58:34