标签:配置文件 ash root wget 缓存 net ase mic ftp
1.下载repo文件
方法一
http://mirrors.163.com/.help/CentOS7-Base-163.repo
方法二:Linux服务器直接下载:
wget –P /home/backup/ http://mirrors.163.com/.help/CentOS6-Base-163.repo
2.备份并替换系统的repo文件
3. 执行yum源更新
[root@localhost ~]# yum clean all #清除以前使用yum的缓存
[root@localhost ~]# yum makecache #建立一个缓存,以后方便在缓存中搜索
4、检查网络yum源
[root@localhost ~]#yum list | grep telnet* #查找网络yum源的telnet安装包
telnet.x86_64 1:0.17-59.el7 base
telnet-server.x86_64 1:0.17-59.el7 base
[root@localhost ~]# yum install telnet.x86_64 #执行安装
标注:把网易163的/etc/yum.repos.d/ CentOS-Base.repo多余配置项删除掉文件修改成如下也能正常使用yum下载,把配置多余配置项删除掉
[base]
name=CentOS-$releasever - Base - 163.com #yum源的名称,可自定义
baseurl=http://mirrors.163.com/centos/$releasever/os/$basearch/ #提供方式包括FTP(ftp://)、HTTP(http://)、本地(file://)
#enabled=1 #设置此源是否可用,1为可用,0为禁用,系统默认是启动可用
gpgcheck=1 #设置此源是否校验文件,1为检验,0为不校验
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6 #或为校验指定公钥文件地址
特殊情况:
如果运行 yum makecache 提示如下错误:
那就是你系统没有配置环境变量$releasever 和 $basearch ,需要把配置文件就把$releasever 都 改成6或者i386
运行 yum makecache 正常情况应该是这样提示:
标签:配置文件 ash root wget 缓存 net ase mic ftp
原文地址:https://www.cnblogs.com/may1990/p/12194299.html