centos-7.6配置本地yum源

@羈絆^O^半度微涼發表於2020-10-15

1、
#cd /etc/yum.repos.d/
#ls
#rm -rf * //刪除前記得先備份mv,cp,tar都可以
#ls
#mkdir /mnt/cdrom
#mount /dev/cdrom /mnt/cdrom/
#df
#vim test.repo
[test] //源區別名稱,用來區分其他的yum源
name=test //yum源描述 yum源名字
baseurl=file:///mnt/cdrom //本地yum源的絕對路徑
gpgcheck=0 //是否使用此yum源
enabled=1 //檢查軟體

2、
配置阿里雲yum源:# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
清除Yum快取: #yum clean all
快取軟體包資訊:
提高搜尋/安裝軟體的速度 #yum makecache

相關文章