Rocky Linux 更换 阿里云的镜像源

  1. 备份原有的*.repo文件
csharp 复制代码
 mkdir /etc/yum.repos.d/bak
 mv /etc/yum.repos.d/*.repo  /etc/yum.repos.d/bak
  1. 创建阿里云镜像仓库
csharp 复制代码
sudo tee /etc/yum.repos.d/rocky-aliyun.repo > /dev/null <<'EOF'
[baseos]
name=Rocky Linux $releasever - BaseOS - Aliyun
baseurl=https://mirrors.aliyun.com/rockylinux/$releasever/BaseOS/$basearch/os/
gpgcheck=0
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial

[appstream]
name=Rocky Linux $releasever - AppStream - Aliyun
baseurl=https://mirrors.aliyun.com/rockylinux/$releasever/AppStream/$basearch/os/
gpgcheck=0
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial

[extras]
name=Rocky Linux $releasever - Extras - Aliyun
baseurl=https://mirrors.aliyun.com/rockylinux/$releasever/extras/$basearch/os/
gpgcheck=0
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial

[crb]
name=Rocky Linux $releasever - CRB - Aliyun
baseurl=https://mirrors.aliyun.com/rockylinux/$releasever/CRB/$basearch/os/
gpgcheck=0
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rockyofficial
EOF

清理缓存

csharp 复制代码
dnf clean all

缓存仓库信息

csharp 复制代码
dnf makecache
  1. 安装软件测试
csharp 复制代码
[root@redis-slave01 yum.repos.d]# time dnf -y install nginx
Last metadata expiration check: 0:01:18 ago on Thu Apr 16 17:12:45 2026.
Dependencies resolved.
=============================================================================================================================================================================
 Package                                    Architecture                    Version                                                 Repository                          Size
=============================================================================================================================================================================
Installing:
 nginx                                      x86_64                          2:1.20.1-24.el9_7.2.rocky.0.1                           appstream                           37 k
Installing dependencies:
 nginx-core                                 x86_64                          2:1.20.1-24.el9_7.2.rocky.0.1                           appstream                          567 k
 nginx-filesystem                           noarch                          2:1.20.1-24.el9_7.2.rocky.0.1                           appstream                           10 k
 rocky-logos-httpd                          noarch                          90.16-1.el9                                             appstream                           24 k

Transaction Summary
=============================================================================================================================================================================
Install  4 Packages

Total download size: 638 k
Installed size: 1.8 M
Downloading Packages:
(1/4): nginx-filesystem-1.20.1-24.el9_7.2.rocky.0.1.noarch.rpm                                                                                59 kB/s |  10 kB     00:00
(2/4): nginx-1.20.1-24.el9_7.2.rocky.0.1.x86_64.rpm                                                                                          161 kB/s |  37 kB     00:00
(3/4): rocky-logos-httpd-90.16-1.el9.noarch.rpm                                                                                              167 kB/s |  24 kB     00:00
(4/4): nginx-core-1.20.1-24.el9_7.2.rocky.0.1.x86_64.rpm                                                                                     278 kB/s | 567 kB     00:02
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                                                        312 kB/s | 638 kB     00:02
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                                                                                                                     1/1
  Running scriptlet: nginx-filesystem-2:1.20.1-24.el9_7.2.rocky.0.1.noarch                                                                                               1/4
  Installing       : nginx-filesystem-2:1.20.1-24.el9_7.2.rocky.0.1.noarch                                                                                               1/4
  Installing       : nginx-core-2:1.20.1-24.el9_7.2.rocky.0.1.x86_64                                                                                                     2/4
  Installing       : rocky-logos-httpd-90.16-1.el9.noarch                                                                                                                3/4
  Installing       : nginx-2:1.20.1-24.el9_7.2.rocky.0.1.x86_64                                                                                                          4/4
  Running scriptlet: nginx-2:1.20.1-24.el9_7.2.rocky.0.1.x86_64                                                                                                          4/4
  Verifying        : nginx-2:1.20.1-24.el9_7.2.rocky.0.1.x86_64                                                                                                          1/4
  Verifying        : nginx-core-2:1.20.1-24.el9_7.2.rocky.0.1.x86_64                                                                                                     2/4
  Verifying        : nginx-filesystem-2:1.20.1-24.el9_7.2.rocky.0.1.noarch                                                                                               3/4
  Verifying        : rocky-logos-httpd-90.16-1.el9.noarch                                                                                                                4/4

Installed:
  nginx-2:1.20.1-24.el9_7.2.rocky.0.1.x86_64          nginx-core-2:1.20.1-24.el9_7.2.rocky.0.1.x86_64          nginx-filesystem-2:1.20.1-24.el9_7.2.rocky.0.1.noarch
  rocky-logos-httpd-90.16-1.el9.noarch

Complete!

real    0m2.951s
user    0m0.487s
sys     0m0.219s

可以看出安装速度非常快。

相关推荐
A小辣椒5 小时前
TShark:Wireshark CLI 功能
linux
A小辣椒9 小时前
TShark:基础知识
linux
AlfredZhao11 小时前
OCI 明明分配了 200G 系统盘,为什么 df 只看到 30G?
linux·oci
AlfredZhao1 天前
vi 删除指定范围的行,不用再反复按 dd
linux·vi
用户9718356334661 天前
银河麒麟 KY10 申威(SW64) 安装 nginx-1.16.1-2.p01.ky10.sw_64.rpm 详细步骤
linux
猪脚踏浪1 天前
linux 拷贝文件或目录到指定的位置
linux
大树882 天前
金刚石散热越强,管路越先见顶
大数据·运维·服务器·人工智能·ai
摇滚侠2 天前
Linux CentOS7 rpm 安装 MySQL 5.7
linux·运维·mysql
霸道流氓气质2 天前
领域驱动设计(DDD)在 Spring Boot 微服务中的实践指南
运维·spring boot·微服务
bush42 天前
嵌入式linux学习记录十四、术语
linux·嵌入式