Rumah > Artikel > Operasi dan penyelenggaraan > centos下yum安装失败怎么办
一、检验是否可以上网
ping www.baidu.com
二、如果不能上网:
1、cd到 /etc/sysconfig/network-scripts/
cd /etc/sysconfig/network-scripts/
(推荐教程:centos教程)
2、ls找到 ifcfg-****(星号部分是随机的) 用vi打开
3、将ONBOOT=no 改为 yes
4、:wq保存并退出
5、重启网络服务
service network restart
三、如果可以联网,但yum install links(例)安装失败。原因是速度太慢,更换镜像源即可。如下:
1、备份你的原镜像文件,以免出错后可以恢复。
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
如果找不到原有的,就直接用新的源。
2、下载新的CentOS-Base.repo 到/etc/yum.repos.d/
CentOS 7:
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
3、运行yum makecache生成缓存
相关视频教程推荐:linux视频教程
Atas ialah kandungan terperinci centos下yum安装失败怎么办. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!