配置本地yum源以及挂载镜像(centos7.6)
配置yum源
# cd /etc/yum.repos.d 可以备份或者删除里面的文件
新建文件
# touch /etc/yum.repos.d/local.repo
# vi /etc/yum.repos.d/local.repo
[centos]
name=centos
baseurl=fire:///opt/centos #镜像挂载位置
gpgcheck=0
enabled=1
保存退出
先创建要挂载的目录
# touch /opt/centos
挂载镜像
# mount -o loop CentOS-7-x86_64-DVD-1511.iso /opt/centos
更新yum源配置
# yum clean all
# yum makecache
测试yum
yum list
#或者
yum repolis
至此配置本地yum源就完成了