centos7 yum源
时间: 2023-12-03 21:41:06 浏览: 142
centos7的yum源
以下是CentOS 7 yum源的介绍和演示:
1. 删除redhat自带的yum包
```shell
rpm -qa|grep yum|xargs rpm -e --nodeps
```
2. 下载并安装阿里云的yum源
```shell
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
```
3. 更新yum源并列出所有可用的软件包
```shell
yum update
yum list
```
4. 安装软件包
```shell
yum install <package_name>
```
阅读全文