rocky8.6 配置yum源多种方法
时间: 2023-11-18 14:33:25 浏览: 1140
1. 使用官方源
在 /etc/yum.repos.d/ 中创建一个新文件,例如 /etc/yum.repos.d/official.repo,然后将以下内容复制到该文件中:
[official]
name=Official CentOS $releasever Base
baseurl=http://mirror.centos.org/$contentdir/$releasever/os/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/$contentdir/$releasever/os/$basearch/RPM-GPG-KEY-CentOS-$releasever
保存文件后,使用命令 yum update 来检查更新。
2. 使用第三方源
许多第三方源可供选择。以下是一些示例:
- EPEL (Extra Packages for Enterprise Linux) 源:
在 /etc/yum.repos.d/ 中创建一个新文件,例如 /etc/yum.repos.d/epel.repo,然后将以下内容复制到该文件中:
[epel]
name=Extra Packages for Enterprise Linux 7 - $basearch
baseurl=https://mirrors.tuna.tsinghua.edu.cn/epel/7/$basearch
gpgcheck=1
gpgkey=https://mirrors.tuna.tsinghua.edu.cn/epel/RPM-GPG-KEY-EPEL-7
保存文件后,使用命令 yum update 来检查更新。
- RPM Fusion 源:
在 /etc/yum.repos.d/ 中创建一个新文件,例如 /etc/yum.repos.d/rpmfusion.repo,然后将以下内容复制到该文件中:
[rpmfusion-free]
name=RPM Fusion for Fedora $releasever - Free
baseurl=https://mirrors.tuna.tsinghua.edu.cn/rpmfusion/free/fedora/releases/$releasever/Everything/$basearch/os/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-fedora-$releasever-$basearch
[rpmfusion-nonfree]
name=RPM Fusion for Fedora $releasever - Nonfree
baseurl=https://mirrors.tuna.tsinghua.edu.cn/rpmfusion/nonfree/fedora/releases/$releasever/Everything/$basearch/os/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-nonfree-fedora-$releasever-$basearch
保存文件后,使用命令 yum update 来检查更新。
3. 使用国内镜像源
许多国内镜像源可供选择。以下是一些示例:
- 清华大学开源软件镜像站:
在 /etc/yum.repos.d/ 中创建一个新文件,例如 /etc/yum.repos.d/tuna.repo,然后将以下内容复制到该文件中:
[tuna]
name=tuna
baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos/$releasever/os/$basearch/
enabled=1
gpgcheck=0
保存文件后,使用命令 yum update 来检查更新。
- 阿里云开源镜像站:
在 /etc/yum.repos.d/ 中创建一个新文件,例如 /etc/yum.repos.d/aliyun.repo,然后将以下内容复制到该文件中:
[aliyun]
name=aliyun
baseurl=https://mirrors.aliyun.com/centos/$releasever/os/$basearch/
enabled=1
gpgcheck=0
保存文件后,使用命令 yum update 来检查更新。
阅读全文