在安装telnet服务时,执行一些任意的命令会报错,出错的提示如下:已加载插件:fastestmirror, langpacks File contains no section headers. file: file:///etc/yum.repos.d/con。报错的原因是:没有配置yum源。
解决步骤如下:
删除原有的文件:
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
如果上诉方法还不能解决问题,再操作如下步骤:
删除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
安装telnet服务
yum -y install telnet
yum -y install telnet-server