C/C++教程

解决centos6yum安装gcc的问题

本文主要是介绍解决centos6yum安装gcc的问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

最近需要搭建一套测试环境,安装redis需要依赖gcc

可是 yum install gcc 无法执行

报错YumRepo Error: All mirror URLs are not using ftp, http[s] or file

在网上查了半天发现是centos6在去年年底官方已经停止支持

并且下架了包括官方所有的centos6源,目前阿里、163、清华等centos6源已无法使用

解决方法:

1.更新yum源:

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

只更新还是不能执行yum命令,会报出一个404的错误

2.修改yum源后404 Not Found解决方法:

备份配置文件,防止以后出错后不好恢复

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

执行下面命令,新建CentOS-Base.repo配置:

vim /etc/yum.repos.d/CentOS-Base.repo

复制粘贴如下命令

[centos-office]
name=centos-office
failovermethod=priority
baseurl=https://vault.centos.org/6.10/os/x86_64/
gpgcheck=1
gpgkey=https://vault.centos.org/6.10/os/x86_64/RPM-GPG-KEY-CentOS-6

保存后退出

执行yum list  正常无报错

此时即可正常使用yum命令了。

这篇关于解决centos6yum安装gcc的问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!