banner

已加载插件:fastestmirror, langpacks Loading mirror speeds from cached hostfile

在安装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

wordpress

WordPress中的后台增加子菜单到现有系统菜单里

wordpress中有许多的函数我们需要熟稔于心。需要说明的是该方式语法与add_menu_page语法完全相同,不再赘述。但仅可以增加子菜单到对应系统内置的菜单,无法为自定义菜单增加子菜单。

0
Would love your thoughts, please comment.x
()
x
Scroll to Top