Centos7更新yum源

时间:2025-04-03 12:52:31

目录

        • 查看当前的 yum 源
        • 对进行备份
        • 使用阿里云源替换本地源
        • 清除yum缓存并更新
        • 安装epel源
        • 使用阿里开源镜像提供的epel源
        • 再次清除系统yum缓存,并重新生成新的yum缓存
        • 查看新 yum 源
        • tips

查看当前的 yum
yum repolist
  • 1
CentOS-进行备份
mv /etc// /etc//
  • 1
使用阿里云源替换本地源
wget -O /etc// /repo/
  • 1
清除yum缓存并更新
yum clean all
yum makecache
  • 1
  • 2
安装epel源
yum list | grep epel-release 
yum install -y epel-release
  • 1
  • 2
使用阿里开源镜像提供的epel源
wget -O /etc// /repo/
  • 1
再次清除系统yum缓存,并重新生成新的yum缓存
yum clean all
yum makecache
  • 1
  • 2
查看新 yum 源
yum repolist enabled
yum repolist all
  • 1
  • 2
tips

如果在yum makecache的过程中一直报:
Another app is currently holding the yum lock; waiting for it to exit…
不必慌张,输入以下命令即可

rm -f /var/run/
  • 1