6.3.1 yum管理-配置yum源
时间:2022-11-21 16:35 作者:六度科技 分类: linux学习
修改网络yum源
vi /etc/yum.repos.d/CentOS-Base. repo
◆[base] 默认软件池,一定要放在[]中
◆name 容器说明,可以自己随便写
◆mirrorlist 镜像站点,这个可以注释掉
◆baseurl 我们的yum源服务器的地址。默认是CentOS官方的yum源服务器,是可以使用的,如果你觉得慢可以改成你喜欢的yum源地址
◆enabled 此容器是否生效,如果不写或写成 enable=1都是生效,写成enable=0就是不生效
◆gpgcheck 如果是1是指RPM的数字证书生效,如果是0则不生效
◆gpgkey 数字证书的公钥文件保存位置。不用修改
yum改阿里源
wget下载直接用
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
wget -O /etc/yum.repos.d/CentOS-Base-epel.repo http://mirrors.aliyun.com/repo/Centos-7.repo
更多yum源
https://blog.whsir.com/post-7783.html
更新yum缓存
yum clean all
yum makecache