RHEL7.2配置本地yum源 [root@localhost ~]#monut /dev/sr0 /mnt #掛載光碟 [root@localhost ~]# rm -rf /etc/yum.repos.d/* [root@localhost ~]# vim /etc/yum.repos.d/rh ...
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