yum源的配置
程序员文章站
2022-05-28 10:20:56
...
yum源的配置
一、本地yum源
step1:挂载本地镜像文件
[aaa@qq.com /]# mkdir /media/cdrom
[aaa@qq.com /]# mount /dev/cdrom /media/cdrom # 写入 /etc/fstab 可实现开机自动挂载镜像
step2:配置本地yum源头
[aaa@qq.com /]# vim /etc/yum.repos.d/Centos7-media.repo
[base] # 自定义源标识
name=Centos7-media # 自定义源名称
baseurl=file:///media/cdrom # 指定仓库路径
enabled=1 # 启用yum源,0为禁用,1为启用{默认为启用}
gpgcheck=0 # 检查GPG-KEY,0为不检查,1为检查
step3:清除缓存
[aaa@qq.com /]# yum clean all # 清除 yum 缓存
已加载插件:fastestmirror
正在清理软件源: base
Cleaning up list of fastest mirrors
Other repos take up 41 M of disk space (use --verbose for details)
step4:生成缓存
[aaa@qq.com /]# yum makecache # 缓存本地 yum 源中的软件包信息
已加载插件:fastestmirror
Determining fastest mirrors
base | 3.6 kB 00:00
(1/4): base/group_gz | 3.5 kB 00:00
(2/4): base/primary_db | 798 kB 00:00
(3/4): base/filelists_db | 301 kB 00:00
(4/4): base/other_db | 201 kB 00:00
元数据缓存已建立
step5:查看 yum 源
[aaa@qq.com /]# yum repolist all # 查看所有的 yum 源
已加载插件:fastestmirror
Loading mirror speeds from cached hostfile
源标识 源名称 状态
base Centos7-media 启用: 445
repolist: 445
[aaa@qq.com /]# yum repolist enabled # 查看可用的 yum 源
已加载插件:fastestmirror
Loading mirror speeds from cached hostfile
源标识 源名称 状态
base Centos7-media 445
repolist: 445
[aaa@qq.com /]# yum list # 列出 yum 源下的安装包
二、网络yum源
[aaa@qq.com~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
[aaa@qq.com ~]# sed -i 's/$releasever/7/g' /etc/yum.repos.d/CentOS-Base.repo
[aaa@qq.com ~]# yum clean all
[aaa@qq.com ~]# yum makecache
三、常用网络源
3.1、清华大学(推荐)
3.2、阿里
上一篇: 深入理解System类及系统启动