Centos 7配置阿里云yum源
程序员文章站
2022-04-06 12:38:22
1. 禁用 yum插件 fastestmirror 1)修改插件的配置文件 # cp /etc/yum/pluginconf.d/fastestmirror.conf /etc/yum/pluginconf.d/fastestmirror.conf.bak # vi /etc/yum/pluginc ......
1. 禁用 yum插件 fastestmirror
1)修改插件的配置文件
# cp /etc/yum/pluginconf.d/fastestmirror.conf /etc/yum/pluginconf.d/fastestmirror.conf.bak
# vi /etc/yum/pluginconf.d/fastestmirror.conf
enabled = 1//由1改为0,禁用该插件
2)修改yum的配置文件
# cp /etc/yum.conf /etc/yum.conf.bak
# vi /etc/yum.conf
plugins=1//改为0,不使用插件
2. 获取阿里云 repo
cp /etc/yum.repos.d/centos-base.repo /etc/yum.repos.d/centos-base.repo.bak
wget -o /etc/yum.repos.d/centos-base.repo http://mirrors.aliyun.com/repo/centos-7.repo
cp /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.bak
wget -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
3.
yum clean all
yum makecache
完工。
下一篇: (三)字符串、列表、元组、字典