阅读量:1
在CentOS 7上更新yum源,可以按照以下步骤进行操作:
打开终端,以root用户身份登录。
备份原始的yum源配置文件:
cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
编辑CentOS-Base.repo文件:
vi /etc/yum.repos.d/CentOS-Base.repo
在文件中,将[base]、[updates]、[extras]、[centosplus]等节的
baseurl
和mirrorlist
行注释掉(在行首添加#符号),然后将以下内容添加到每个节的末尾:baseurl=http://mirrors.163.com/centos/$releasever/os/$basearch/
保存并退出vi编辑器。
清理yum缓存:
yum clean all
更新yum源:
yum makecache
现在,您的CentOS 7系统的yum源已经成功更新为163.com的镜像源。您可以使用yum命令来安装、更新和删除软件包。