Rocky Linux yum/dnf repo/mirrors 国内镜像列表及更换方法
#!/bin/bash
# 更新系统软件仓库为中国区镜像
# 移除旧的仓库文件
sudo rm -f /etc/yum.repos.d/CentOS-*
sudo rm -f /etc/yum.repos.d/rocky-*.repo
# 更新dnf/yum软件包索引(可选)
sudo dnf clean all
sudo dnf makecache
# 添加中国区镜像仓库
echo "[rocky-os]
name=Rocky OS \$releasever - \$basearch
baseurl=https://mirrors.tuna.tsinghua.edu.cn/rockylinux/releases/\$releasever/\$basearch/os/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial
[rocky-appstream]
name=Rocky AppStream \$releasever - \$basearch
baseurl=https://mirrors.tuna.tsinghua.edu.cn/rockylinux/releases/\$releasever/\$basearch/appstream/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial
" | sudo tee /etc/yum.repos.d/rocky-mirror.repo
# 再次更新dnf/yum软件包索引
sudo dnf clean all
sudo dnf makecache
echo "已将软件仓库更新为中国区镜像。"
这段代码首先移除旧的仓库文件,然后添加了清华大学提供的Rocky Linux中国区镜像仓库。更新软件包索引是可选的,但推荐执行以确保后续的软件安装/更新操作能正常进行。
评论已关闭