• 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至此就成功了;

  • 相关阅读:
    守护线程
    接口中的方法重写
    jvm内存结构
    浅拷贝,深拷贝
    队列
    12月4号荒度了一天
    同步条件
    条件变量
    信号量Semaphore
    sql练习
  • 原文地址:https://www.cnblogs.com/zgboy/p/14666051.html
Copyright © 2020-2023  润新知