哥伦布

博客园 首页 新随笔 联系 订阅 管理

重新配置yum源

删除原有的 yum 源配置文件:
进入/etc/yum.repos.d/目录
删除该目录下的所有文件(建议先备份或移动到其他位置,以防万一)。执行命令:
rm -f /etc/yum.repos.d/*
重新下载合适的 yum 源:例如,如果使用阿里云的源,可以执行以下命令下载 CentOS 的 base 源和 epel 源(需要 root 权限):
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
清理 yum 缓存:执行命令yum clean all。
重新生成 yum 缓存:执行命令yum makecache
更新系统:执行命令yum update -y,更新系统软件包。

posted on 2024-09-12 08:11  Caraxes  阅读(255)  评论(0编辑  收藏  举报