RedHat 6.2 Linux修改yum源免费使用CentOS源
在一个新的RedHat Linux服务器上安装nginx的时候,命令都不能解析,缺少gcc编辑器,安装gcc的命令也出错。
[[email protected] ~]# yum -y install gcc
Loaded plugins: katello, product-id, security, subscription-manager
Updating certificate-based repositories.
Unable to read consumer identity
Setting up Install Process
No package gcc available.
Nothing to do
没有gcc的软件包的,
最终找到一个解决办法
检查版本:
[[email protected] ~]# cat /etc/issue
解决过程:
1.下载163安装源
[[email protected]~]# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo【注意,这里我一开始是CentOS5-Base-163.repo,一直到第四步有问题,后面改成CentOS6-Base-163.repo】
ps:我的版本是6
2.修改repo文件(根据红帽版本)
[[email protected]~]# mv CentOS6-Base-163.repo /etc/yum.repos.d/
*** 把$releasever替换成6 (红帽6版本以上的改为6)
[[email protected] yum.repos.d]# sed -i ‘s#$releasever#6#g‘ ./CentOS5-Base-163.repo
3.清除原有缓存
[[email protected] yum.repos.d]# yum clean all
4.获取yum列表
[[email protected] yum.repos.d]# yum makecache
5.搜索安装
[[email protected] ~]# yum search gcc |grep --color ‘^gcc‘
6.安装gcc
[[email protected] yum.repos.d]# yum -y install gcc
至此gcc安装完成。