Centos7最小化安装报错Loading mirror speeds from cached hostfile

Centos7最小化安装报错There are no enabled repos. Run "yum repolist all" to see the repos you have.解决办法
原因是缺少CentOS-Base.repo文件,因为我这台机器wget也不能用,所以我是下载到本地sftp上去的,传输的时候一定要在root用户下,否则会无法启动传输

这是报错的完整信息:
Loading mirror speeds from cached hostfile
There are no enabled repos.
Run "yum repolist all" to see the repos you have.
To enable Red Hat Subscription Management repositories:
subscription-manager repos --enable
To enable custom repositories:
yum-config-manager --enable

1、yum –help 显然yum是正常的,也许是网络问题。

2、一定要将身份切换到root账户,进入vim /etc/sysconfig/network-scripts/ifcfg-ens33修改文件,将ONBOOT=no改为yes,如果没有做网络配置的,也要配置网络;

3、解决方法为:

下载对应版本repo文件, 放入/etc/yum.repos.d/里,下载地址:http://mirrors.163.com/.help/centos.html

因为我这台机器wget也不能用,所以我是下载到本地sftp上去的,传输的时候一定要在root用户下,否则会无法启动传输(用一般的传输工具就可以了)
put命令

完成后,查看/etc/yum.repos.d文件夹下是否有了CentOS-Base.repo文件,然后生成缓存,分别执行下面两个命令:

yum clean all

yum makecache

最后执行yum -y install wget至此就成功了;

posted @ 2021-04-16 11:07  赵刚、  阅读(3673)  评论(0编辑  收藏  举报