最近更新时间:2020-06-09 19:57:23
进入yum源配置文件目录。
cd /etc/yum.repos.d/
ls
备份金山云yum源配置文件。
mv CentOS.repo CentOS_repo
将系统自带yum源配置文件拷贝到当前目录。
cp backup/CentOS-Base.repo .
ls
更新系统。
yum update
进入yum源配置文件目录。
cd /etc/yum.repos.d/
ls
删除系统自带的yum源配置文件,使用金山云yum源配置文件。
rm -f CentOS-Base.repo
mv CentOS_repo CentOS.repo
更新系统。
yum update
进入yum源配置文件目录。
cd /etc/yum.repos.d/
备份当前yum源配置文件。
mv CentOS-Base.repo CentOS-Base_repo_bak
下载新的配置文件。此处以网易提供的yum源为例。
wget [http://mirrors.163.com/.help/CentOS6-Base-163.repo](http://mirrors.163.com/.help/CentOS6-Base-163.repo)
按照配置文件的要求,重新命名配置文件。此处以“CentOS6-Base-163.repo”为例。
mv CentOS6-Base-163.repo CentOS-Base.repo
更新系统。
yum update
纯净模式