centos7虚拟机踩坑

yum

yum安装时出现Loaded plugins: fastestmirror

fastestmirror是yum的一个加速插件,这里是插件提示信息是插件不能用了。

  1. vim /etc/yum/pluginconf.d/fastestmirror.conf enabled = 1修改为enabled = 0
  2. vim /etc/yum.conf 修改为plugins=0 不使用插件
  3. 清除缓存并重新构建yum 源
     yum clean all
     yum clean dbcache
     yum makecache
    

yum命令报错File contains no section headers

①删除yum.repos.d目录下所有文件

rm -f /etc/yum.repos.d/*

②从阿里的库重新下载这个文件

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

③清理缓存

yum clean all

你可能感兴趣的:(linux,linux)