RHEL6.5系统配置网络Yum源概述
1.配置本地yum源:
将光盘镜像文件挂载到/mnt目录下#mount /dev/cdrom /mnt;
修改/etc/yum.repo.d/目录下的配置文件,删除或重命名其他的.repo文件,创建新的local.repo文件,内容如下:
[local] name=local DVD baseurl=file:///mnt enabled=1 gpgcheck=0
2.利用本地yum源安装wget下载工具:
#yum install wget -y
3.利用wget下载网络yum源配置文件:
#cd /etc/yum.repo.d/ #wget #wget
wget下载到当前目录下;
以上分别为163和搜狐的开源镜像网站。若没有安装wget请首先在本地yum源上安装;
4.修改下载的网络yum源配置文件:
#mv local.repo local.repo.bak //将本地yum源重命名,避免和网络源冲突 #vi CentOS-Base-sohu.repo [base] name=CentOS-$releasever - Base - sohu.com mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os baseurl=http://mirrors.sohu.com/centos/6/os/$basearch/ enable=1 gpgcheck=0
只为本地实验配置的yum源,可以暂且将其他行注释掉,只保留前几行:
修改baseurl的内容为baseurl=http://mirrors.sohu.com/centos/6/os/$basearch/,修改前的内容为
baseurl=http://mirrors.sohu.com/centos/$releasever/os/$basearch/,若不修改则$releasever无法正确获取到相应的值。
5.清除yum缓存,检查网络yum源是否正确配置:
#yum clean all #yum list
若不提示错误则配置正确。
以上为最简单粗暴的配置过程,仅供个人实验参考,更完善的功能日后逐步完善。
本文出自 “李义杰” 博客,请务必保留此出处http://lyjbog.blog.51cto.com/4317657/1662549
原文地址:http://lyjbog.blog.51cto.com/4317657/1662549