名詞解釋
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