快速部署 yum 源

直接下载sohu镜象提供的配置好的yum安装源配置文件
  [root@centos ~]#cd /etc/yum.repos.d/
  [root@centos ~]#/bin/mv CentOS-Base.repo CentOS-Base.repo.ori
  [root@centos ~]#wget http://mirrors.sohu.com/help/CentOS-Base-sohu.repo
#→这是sohu提供的配置的安装源配置文件
  [root@centos ~]#/bin/mv CentOS-Base-sohu.repo CentOS-Base.repo
提示:没有特别以外,同学们可以使用这个方法,操作上很快,可以把命令写好批量执行。


快速部署
###################################################################
cd /etc/yum.repos.d/
/bin/mv CentOS-Base.repo CentOS-Base.repo.ori
wget -q http://mirrors.sohu.com/help/CentOS-Base-sohu.repo
/bin/mv CentOS-Base-sohu.repo CentOS-Base.repo

保存yum包
 #方法如下:vi /etc/yum.conf  把keepcache=0修改为keepcache=1 ,表示下载的rpm包不清除
#3.通过yum下载的rpm包默认路径为/var/cache/yum/base/packages/ 

redhat 配置yum 源
rpm -ivh 


yum故障现象


解决办法:
[intern@bogon ]$ yum clean all
...
[intern@bogon ]$ yum makecache

 

你可能感兴趣的:(yum,快速部署,源)