配置本地yum源和阿里云源
作者:快盘下载 人气:本地源
1.创建目录挂载
mkdir /mnt
mount -o ro /dev/sr0 /mnt #以只读的方式挂载
2.删除了它所有的默认的配置(因为这些默认配置要连公网的源,速度太慢)
rm -rf /etc/yum.repos.d/*
3.自建本地yum源配置文件
vim /etc/yum.repos.d/local.repo
[local]
name=local
baseurl=file:///media/cdrom
enabled=1
gpgcheck=0
4.清一清缓存
yum clean all
yum makecache fast
阿里云源
rm -rf /etc/yum.repos.d/*
wget -O /etc/yum.repos.d/Centos-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
yum makecache
wget -O /etc/yum.repos.d/epel-7 http://mirrors.aliyun.com/repo/epel-7.repo
齐活~~~
加载全部内容