zoukankan      html  css  js  c++  java
  • 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 <repo>

     To enable custom repositories:

         yum-config-manager --enable <repo>

     

     

    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用户下,否则会无法启动传输(用一般的传输工具就可以了)

     

     

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

    yum clean all

    yum makecache

     

     

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

     

     

  • 相关阅读:
    Python:起步
    实战Django:Rango Part8
    实战Django:Rango Part7
    实战Django:Rango Part6
    实战Django:Rango Part5
    实战Django:Rango Part4
    Fitnesse集成TestLink
    oracle存储过程代码覆盖率统计工具
    ant svn
    Jenkins中关于一些插件的使用方法
  • 原文地址:https://www.cnblogs.com/wangpingcong/p/12936331.html
Copyright © 2011-2022 走看看