Linux镜像源
开源镜像站
RockyLinux
阿里云镜像
1
2
3
4
5
6
7sed -e 's|^mirrorlist=|#mirrorlist=|g' \
-e 's|^#baseurl=http://dl.rockylinux.org/$contentdir|baseurl=https://mirrors.aliyun.com/rockylinux|g' \
-i.bak \
/etc/yum.repos.d/rocky-extras.repo \
/etc/yum.repos.d/rocky.repo
dnf makecache-
1
2
3
4
5
6
7
8
9
10
11
12# 首先从 Extras 里安装 epel-release
dnf remove epel-release -y
dnf install epel-release -y
# 用如下命令自动替换
sed -e 's!^metalink=!#metalink=!g' \
-e 's!^#baseurl=!baseurl=!g' \
-e 's!https\?://download\.fedoraproject\.org/pub/epel!http://mirrors.tuna.tsinghua.edu.cn/epel!g' \
-e 's!https\?://download\.example/pub/epel!http://mirrors.tuna.tsinghua.edu.cn/epel!g' \
-i /etc/yum.repos.d/epel{,-testing}.repo
#运行测试
dnf update
Centos
阿里镜像 https://developer.aliyun.com/mirror/centos
1
2
3
4
5# CentOS 6
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-6.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-6.repo1
2
3
4
5# CentOS 7
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo1
2
3
4
5# CentOS 8
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo非阿里云ECS 可自行修改相关配置
1
2
3# 非阿里云ECS用户会出现 Couldn't resolve host 'mirrors.cloud.aliyuncs.com' 信息,不影响使用。
sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repoyum 更新缓存
1
2
3
4
5
6
7
8
9
10yum clean all # 清除系统所有的yum缓存
yum makecache # 生成yum缓存
yum repolist all # 查看所有的yum源
yum repolist enabled # 查看可用的yum源
# yum update不要随便执行,会更新系统内核
# 升级所有包,改变软件设置和系抄统设置,系统版本内核都升级。
yum -y update
# 升级所有包,不改变软件设置和系统设置,系统版本升级,内核不改变。
yum -y upgrade
Ubuntu
1 | # 换成清华源 另外请注意,wsl的Ubuntu证书是过期的,如果你想手动还源的话请记得先更新证书 |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 凉月の博客!
评论