Centos 7.9.2009 配置国内yum源及epel源
一、备份原有的yum源配置文件
在进行任何更改之前,建议先备份原有的yum源配置文件,以防止配置过程中出现问题。可以使用以下命令备份CentOS-Base.repo文件:
[root@localhost ~]# cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) [root@localhost ~]# ls -l /etc/yum.repos.d/ && mkdir -pv /etc/yum.repos.d/backup-$(date "+%Y.%m.%d-%H.%M.%S") && mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/backup* total 40 -rw-r--r--. 1 root root 1664 Oct 23 2020 CentOS-Base.repo -rw-r--r--. 1 root root 1309 Oct 23 2020 CentOS-CR.repo -rw-r--r--. 1 root root 649 Oct 23 2020 CentOS-Debuginfo.repo -rw-r--r--. 1 root root 314 Oct 23 2020 CentOS-fasttrack.repo -rw-r--r--. 1 root root 630 Oct 23 2020 CentOS-Media.repo -rw-r--r--. 1 root root 1331 Oct 23 2020 CentOS-Sources.repo -rw-r--r--. 1 root root 8515 Oct 23 2020 CentOS-Vault.repo -rw-r--r--. 1 root root 616 Oct 23 2020 CentOS-x86_64-kernel.repo mkdir: created directory ‘/etc/yum.repos.d/backup-2024.05.09-16.18.01’ [root@localhost ~]# ls -l /etc/yum.repos.d/ total 0 drwxr-xr-x. 2 root root 220 May 9 16:18 backup-2024.05.09-16.18.01 [root@localhost ~]#