centos添加源

来源:互联网 发布:淘宝详情页面打不开 编辑:程序博客网 时间:2024/06/13 21:14

centos的本身的,往往资源比较少!

有时增加一些外部的第三方源会大大提高yum install的便利。


更新方法如下:
先进入yum源配置目录
cd /etc/yum.repos.d
备份系统自带的yum源
mv CentOS-Base.repo CentOS-Base.repo.save
下载yum源
163的yum源
wget http://mirrors.163.com/.help/CentOS-Base-163.repo


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


更新玩yum源后,建议更新一下,使操作立即生效
yum makecache


为CentOS安装EPEL软件仓库
EPEL全称: Extra Packages for Enterprise Linux.传说中最全的yum源
通过以下命令安装:

CentOS 7.x 64-bit
rpm -Uvh http://ftp.riken.jp/Linux/fedora/epel//7/x86_64/e/epel-release-7-5.noarch.rpm

想暂停使用EPEL,在下面的文件中设置enabled=0即可.
vim /etc/yum.repos.d/epel.repo


根据自己的系统版本选择适合自己的rpm包,http://ftp.riken.jp/Linux/fedora/epel//

0 0