码迷,mamicode.com
首页 > 其他好文 > 详细

使用sohu的网络yum源操作步骤

时间:2016-07-19 15:42:28      阅读:746      评论:0      收藏:0      [点我收藏+]

标签:requested   配置文件   error   

一,下载yum的repo文件:

   yum -y install wget

   cd /etc/yum.repos.d/

   wget http://mirrors.sohu.com/help/CentOS-Base-sohu.repo


二,将其他的配置文件改名设置备份

  mv CentOS-Base.repo CentOS-Base.repo.bak


三,测试yum源可用性

  yum list | wc -l

  显示5313个包即为配置正确



配置sohu的网络yum源常见报错:

一,路径错误:

[root@localhost ~]# yum list | wc -l


http://mirrors.sohu.com/centos/6/addons/i386/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"

Trying other mirror.

http://ftp.jaist.ac.jp/pub/Linux/CentOS/6/addons/i386/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"

Trying other mirror.

解析:

此为配置路径错误

解决办法:

cd /etc/yum.repos.d/

vim  CentOS-Base-sohu.repo

找到addons修改为os即可

技术分享

技术分享

然后执行

yum makecache

问题解决。


二,进程占用

[root@localhost yum.repos.d]# yum clean all

Loaded plugins: fastestmirror

Existing lock /var/run/yum.pid: another copy is running as pid 1224.

Another app is currently holding the yum lock; waiting for it to exit...

  The other application is: yum

    Memory :  14 M RSS (142 MB VSZ)

    Started: Tue Jul 19 19:41:24 2016 - 00:12 ago

    State  : Traced/Stopped, pid: 1224

Another app is currently holding the yum lock; waiting for it to exit...

  The other application is: yum

    Memory :  14 M RSS (142 MB VSZ)

    Started: Tue Jul 19 19:41:24 2016 - 00:14 ago

    State  : Traced/Stopped, pid: 1224

^Z


解决办法:

使用kill -9 强制杀死对应进程

kill -9 1224

技术分享

问题解决

本文出自 “11862544” 博客,请务必保留此出处http://11872544.blog.51cto.com/11862544/1827709

使用sohu的网络yum源操作步骤

标签:requested   配置文件   error   

原文地址:http://11872544.blog.51cto.com/11862544/1827709

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!