centos 7 配置yum源
时间: 2023-08-25 22:07:54 浏览: 153
Centos7安装本地yum源.txt
5星 · 资源好评率100%
CentOS 7 配置 yum 源的步骤如下:
1. 打开 CentOS 官网(https://www.centos.org/),找到 "Download" 菜单,选择 "Mirrors" 进入镜像站点。
2. 选择一个离自己比较近的镜像站点,例如:http://mirrors.163.com/centos/7/os/x86_64/。
3. 在终端下,进入 /etc/yum.repos.d 目录,备份 CentOS-Base.repo 文件。
```
$ cd /etc/yum.repos.d/
$ mv CentOS-Base.repo CentOS-Base.repo.bak
```
4. 下载 CentOS-Base.repo 文件到 /etc/yum.repos.d 目录。
```
$ wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
```
5. 运行 yum makecache 命令,生成缓存。
```
$ yum clean all
$ yum makecache
```
6. 配置完成,可以使用 yum 命令安装软件包了。
```
$ yum install package-name
```
阅读全文