CentOS 的 YUM 与 DNF(qbit)

名词解释

  • Yum
Yellow dog Updater, Modified
  • DNF
DaNdiFied Yum

CentOS7 更换 Yum 源

  • 备份
mkdir /etc/yum.repos.d/backup
mv /etc/yum.repos.d/*.* /etc/yum.repos.d/backup
  • 下载(阿里云 Yum 源)
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
本文出自 qbit snap

你可能感兴趣的:(yum,linux)