yum源配置 centos
时间: 2023-08-03 18:55:21 浏览: 108
好的,以下是在CentOS中配置yum源的步骤:
1.备份原有的yum源配置文件
```bash
sudo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
```
2.下载新的yum源配置文件
CentOS 7:
```bash
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
```
CentOS 8:
```bash
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-8.repo
```
3.更新yum缓存
```bash
sudo yum makecache
```
4.测试yum命令是否正常
```bash
sudo yum install vim
```
以上就是在CentOS中配置yum源的步骤,希望能对你有所帮助!
相关问题
yum源配置 centos6
好的,以下是在CentOS 6中配置yum源的步骤:
1.备份原有的yum源配置文件
```bash
sudo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
```
2.下载新的yum源配置文件
```bash
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
```
3.更新yum缓存
```bash
sudo yum makecache
```
4.测试yum命令是否正常
```bash
sudo yum install vim
```
以上就是在CentOS 6中配置yum源的步骤,希望能对你有所帮助!
虚拟机yum源配置centos7
要在虚拟机上配置CentOS 7的yum源,可以按照以下步骤进行操作:
1. 下载阿里云的yum源。使用以下命令下载CentOS-Base.repo文件:
```
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
```
这里假设你的CentOS版本是7.9,所以下载CentOS 7的yum源即可。你可以使用以下命令查看你的CentOS版本:
```
cat /etc/redhat-release
```
2. 显示所有仓库。使用以下命令查看所有可用的yum仓库:
```
yum repolist all
```
3. 编辑文件CentOS-Media.repo。使用vim编辑器打开CentOS-Media.repo文件:
```
vim /etc/yum.repos.d/CentOS-Media.repo
```
在文件中,你可以看到一些注释和配置信息。你可以根据需要进行修改,比如设置baseurl为你的DVD光盘的挂载点,设置gpgcheck为0以禁用GPG检查,设置enabled为1以启用该yum源。
完成上述步骤后,你的虚拟机就配置好了CentOS 7的yum源。你可以使用yum命令来安装、更新和管理软件包。
#### 引用[.reference_title]
- *1* *2* [虚拟机给Centos7配置yum源(本地yum和网络yum)](https://blog.csdn.net/LShuo666/article/details/129021403)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [Centos7配置yum源(本地yum源和阿里网络yum源)](https://blog.csdn.net/qq_46162321/article/details/115006096)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文