很多人,在虚拟机CenOS7安装好后不知道后续步骤,频繁报错
wget,yum等命令一输入就是报错信息
以下写一下后续步骤内容
一.更改网络IP地址
vi /etc/sysconfig/network-scripts/ifcfg-ens33
根据自己的地址进行配置
二.更改yum源
我在使用yum -y install wget报错了
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
使用这个命令也报错
初始的linux内频繁的报出错误信息后,我使用了curl命令(CentOS-7,根据自己版本进行变更)
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
成功了,然后使用命令进行yum源更新
yum clean all
yum makecache
yum update
一条一条来
后面整个linux盘活,可以非常方便的使用了
使用yum -y install 命令也没有报错
阿里源地址,wget报错就可以使用curl,后面都是一样的
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-6.10.repo