centos下yum安装失败怎么办
时间:2020-03-26 17:43
一、检验是否可以上网 二、如果不能上网: 1、cd到 /etc/sysconfig/network-scripts/ (推荐教程:centos教程) 2、ls找到 ifcfg-****(星号部分是随机的) 用vi打开 3、将ONBOOT=no 改为 yes 4、:wq保存并退出 5、重启网络服务 三、如果可以联网,但yum install links(例)安装失败。原因是速度太慢,更换镜像源即可。如下: 1、备份你的原镜像文件,以免出错后可以恢复。 如果找不到原有的,就直接用新的源。 2、下载新的CentOS-Base.repo 到/etc/yum.repos.d/ CentOS 7: 或者 3、运行yum makecache生成缓存 相关视频教程推荐:linux视频教程 以上就是centos下yum安装失败怎么办的详细内容,更多请关注gxlcms其它相关文章!ping www.baidu.com
cd /etc/sysconfig/network-scripts/
service network restart
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
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