CentOS 8 配置本地yum源
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 8 配置本地yum源相关的知识,希望对你有一定的参考价值。
参考技术A 在 local.repo 文件中编辑参数代表含义:
挂载成功如图所示:
yum --disablerepo:表示禁用哪个仓库,等于号后面接仓库名(没有空格),多个仓库使用逗号隔开。
yum-config-manager --disable 后面跟着的是仓库的id
(查看仓库id:)
如图,可以看到AppStream和BaseOS已经被禁用了
Centos6.5使用光盘作为本地的yum源
Centos6.5使用光盘作为本地的yum源
主要是用于无法连接外网的CentOS6.5服务器
mkdir /mnt/cdrom
挂载光驱ISO文件
[[email protected]~]# mount /dev/cdrom /mnt/cdrom/
修改默认的源,修改前请先备份文件。
[[email protected] ~]# cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
编辑yum文件
[[email protected] ~]# vim /etc/yum.repos.d/CentOS-Base.repo
[base]
name=CentOS-$releasver - Base
baseurl=file:///mnt/cdrom/
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
#released updates
[updates]
name=CentOS-$releasver - Updates
baseurl=file:///mnt/cdrom/
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
...
[[email protected] ~]# yum clean all (清除缓存)
[[email protected] ~]# yum makecache (建立新缓存)
就可以了的说
本文出自 “KKMM” 博客,请务必保留此出处http://lisiyun.blog.51cto.com/2779132/1793213
以上是关于CentOS 8 配置本地yum源的主要内容,如果未能解决你的问题,请参考以下文章