RHEL6.5与7.2本地与网络YUM源配置
RHEL7.2配置本地yum源
[root@localhost ~]#monut /dev/sr0 /mnt #挂载光盘
[root@localhost ~]# rm -rf /etc/yum.repos.d/*
[root@localhost ~]# 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的正确性
YUM使用:
[root@localhost ~]# yum clean all #清空yum缓存
[root@localhost ~]# yum list #生成列表
RHEL7.2 配置网络yum 源配置
[root@localhost ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
[root@localhost ~]# sed -i 's/$releasever/7/g' /etc/yum.repos.d/CentOS-Base.repo
[root@localhost ~]# yum clean all
[root@localhost ~]# yum list
RHEL6.5 配置网络yum源
[root@localhost ~]#monut /dev/sr0 /mnt #挂载光盘
[root@xuegod163 ~]#
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
[root@xuegod163 ~]# sed -i 's/$releasever/6.7/g' /etc/yum.repos.d/CentOS-Base.repo
[root@xuegod163 ~]# yum clean all
[root@xuegod163 ~]# yum list
RHEL6.5配置本地yum源
[root@localhost ~]# rm -rf /etc/yum.repos.d/*
[root@localhost ~]# vim /etc/yum.repos.d/rhel6.repo
[rhel6-yum] #yum源名称,唯一的,用来区分不同的yum源
name=rhel6-source #对yum源描述信息
baseurl=file:///mnt #yum源的路径(repodata目录所在的目录)
enabled=1 #为1,表示启用yum源
gpgcheck=0