centos7系统更换国内阿里源方法
一、更换yum源
CentOS 自带的yum源(yum仓库)的网址都是国外的服务器,因此用yum安装软件的时候下载速度会比较慢,而更改成国内源网速就会快很多。国内的源还是比较多的,比如阿里、163、清华等。
- 操作步骤
- 备份系统自带的源
sudo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
- 用wget下载阿里源
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
如果提示没有wget,可以使用curl下载
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
- 清除并重建缓存
yum clean all
yum makecache
二、同步更新源
Ubuntu我们知道软件管理器是apt,而Centos是yum。
apt-get update //同步源,更新列表
apt-get upgrade //更新可安装软件
列出所有可更新的软件清单
yum check-update
安装所有更新软件
yum -y update //更新将保留过时的package
yum -y upgrade //升级会移除过时的package
因此如果软件依赖旧版本的package,最好是使用 yum update,确保不会出现兼容问题。
阅读剩余
THE END