yum -y install vsftpd 运行出错。不知道怎么处理。
来源:2-13 vsftpd文件服务器安装与配置实操(linux系统同学看这节)
山野小花曳风雨
2020-05-11
[root@localhost etc]# yum -y install vsftpd
Loaded plugins: fastestmirror, security
File contains no section headers.
file: file:///etc/yum.repos.d/CentOS-Base.repo, line: 1
’–2020-05-08 21:54:44-- http://mirrors.aliyun.com/repo/Centos-6.repo\n’
对比了自己的CentOS-Base.repo 与 http://learning.happymmall.com/env/Centos-6.repo ,没有发现不同。
不知道是哪里有问题。到群里问 让我到这里来问。坐等救命。
2回答
-
山野小花曳风雨
提问者
2020-05-11
我是自问自答型选手
00 -
山野小花曳风雨
提问者
2020-05-11
在使用yum命令执行安装指令时,报错File contains no section headers. file: file:///etc/yum.repos.d/
原因是配置中没有配置yum源,
解决方法:
方法1:配置yum源,修改/etc/yum.repos.d/CenOS-Base.repo文件
方法2:删除原文件重新下载
删除原有的文件 rm -f /etc/yum.repos.d/CentOS-Base.repo
重新下载,wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
清理缓存 yum clean all
————————————————
版权声明:本文为CSDN博主「Jack__iT」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/Jack__iT/article/details/89077952
00
相似问题