名词解释
Yellow dog Updater, Modified
DaNdiFied Yum
CentOS7 更换 Yum 源
mkdir /etc/yum.repos.d/backup
mv /etc/yum.repos.d/*.* /etc/yum.repos.d/backup
curl -o /etc/yum.repos.d/CentOS7-Aliyun.repo http://mirrors.aliyun.com/repo/Centos-7.repo
curl -o /etc/yum.repos.d/epel-7-Aliyun.repo http://mirrors.aliyun.com/repo/epel-7.repo
yum clean all && yum makecache
CentOS8 更换 Yum 源
mkdir /etc/yum.repos.d/backup
mv /etc/yum.repos.d/*.* /etc/yum.repos.d/backup
curl -o /etc/yum.repos.d/CentOS8-Aliyun.repo http://mirrors.aliyun.com/repo/Centos-8.repo
yum clean all && yum makecache
yum install epel-release -y
sed -i 's|^#baseurl=https://download.fedoraproject.org/pub|baseurl=https://mirrors.aliyun.com|' /etc/yum.repos.d/epel*
sed -i 's|^metalink|#metalink|' /etc/yum.repos.d/epel*
$ sudo yum repolist epel
Repository AppStream is listed more than once in the configuration
Repository extras is listed more than once in the configuration
Repository PowerTools is listed more than once in the configuration
Repository centosplus is listed more than once in the configuration
repo id repo name status
epel Extra Packages for Enterprise Linux 8 - x86_64 enabled
- 安装 htop 测试(htop 在 epel 里面)
sudo yum install htop
本文出自 qbit snap