979 B
979 B
title, date, lastmod, tags, categories
title | date | lastmod | tags | categories | ||||
---|---|---|---|---|---|---|---|---|
Yum 笔记 | 2019-10-30T12:49:22+08:00 | 2019-10-30T12:49:22+08:00 |
|
|
CentOS 配置本地 ISO 镜像源
上传 iso 文件
- 上传 CentOS7 的 DVD iso 镜像文件到目标服务器,例如 /home/centos7.4.iso
挂载 iso 文件
- 挂载该 iso 文件到操作系统的一个空目录中,例如 /mnt/ 下
mount -o loop /home/centos7.4.iso /mnt/
修改软件源文件
-
备份全部的 .repo 文件
cd /etc/yum.repos.d/ ls *.repo|xargs -i mv {} {}_bak
-
创建 centos-base.repo 空文件,写入下面几行
[base] name=centos iso baseurl=file:///mnt/ enabled=1 gpgcheck=0
重新创建 yum 缓存
-
清空以前的 yum cache
yum clean all
-
生成新的 yum 缓存
yum makecache fast