1. 加载 CentOS的ISO镜像并挂载:
[root@localhost files]# mount /media/files/CentOS-7-x86_64-DVD-1611.iso /mnt/cdrom/
mount: /dev/loop0 写保护,将以只读方式挂载
2. 新建CentOS目录并把光盘上的文件复制到该目录下:
[root@localhost files]# mkdir /media/CentOS/
[root@localhost files]# cp -fr /mnt/cdrom/* /media/CentOS/
3. 修改yum配置文件:
[root@localhost /]# vi /etc/yum.repos.d/CentOS-Media.repo
# CentOS-Media.repo
#
# This repo can be used with mounted DVD media, verify the mount point for
# CentOS-7. You can use this repo and yum to install items directly off the
# DVD ISO that we release.
#
# To use this repo, put in your DVD and use it with the other repos too:
# yum –enablerepo=c7-media [command]
#
# or for ONLY the media repo, do this:
#
# yum –disablerepo=\* –enablerepo=c7-media [command]
[c7-media]
name=CentOS-$releasever – Media
baseurl=file:///media/CentOS/ –>这一行改成前边我们新建的CentOS目录
# file:///media/cdrom/ –>这一行加#号注释掉
# file:///media/cdrecorder/ –>这一行加#号注释掉
gpgcheck=1
enabled=1 –>这一行把0改成1来启用源
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
按 “i” 键 修改红色标记的地方,然后输入 :wq 保存退出。
4. 卸载镜像:
[root@localhost /]# umount /mnt/cdrom/
====================================================
Tips:
如果要想单独只使用这个本地源就需要打这个命令了:
yum –disablerepo=”*” –enablerepo=c7-media
例如用这个本地源随便安装一个软件 “zsh.x86_64”
[root@localhost ~]# yum –disablerepo=”*” –enablerepo=c7-media install zsh –>这段 –disablerepo=”*” 也可以不用输
已加载插件:fastestmirror, langpacks
c7-media | 3.6 kB 00:00
Loading mirror speeds from cached hostfile
正在解决依赖关系
–> 正在检查事务
—> 软件包 zsh.x86_64.0.5.0.2-25.el7 将被 安装
–> 解决依赖关系完成
依赖关系解决
================================================================================
Package 架构 版本 源 大小
================================================================================
正在安装:
zsh x86_64 5.0.2-25.el7 c7-media 2.4 M
事务概要
================================================================================
安装 1 软件包
总下载量:2.4 M
安装大小:5.6 M
Is this ok [y/d/N]: y
Downloading packages:
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
正在安装 : zsh-5.0.2-25.el7.x86_64 1/1
验证中 : zsh-5.0.2-25.el7.x86_64 1/1
已安装:
zsh.x86_64 0:5.0.2-25.el7
完毕!
更多YUM相关教程见以下内容:
RHEL7 本地yum源配置 http://www.linuxidc.com/Linux/2017-01/139140.htm
CentOS 6.5 配置本地Yum源 http://www.linuxidc.com/Linux/2017-04/143127.htm
CentOS 7 使用阿里云的yum源、PIP源 http://www.linuxidc.com/Linux/2017-01/13966.htm
CentOS及Red Hat Linux安装yum源 http://www.linuxidc.com/Linux/2017-02/140205.htm
CentOS 7更改yum源与更新系统 http://www.linuxidc.com/Linux/2017-01/140067.htm
RedHat7.0配置本地yum源 http://www.linuxidc.com/Linux/2017-01/139148.htm
RedHat Linux 7安装CentOS 7 yum源 http://www.linuxidc.com/Linux/2017-04/142444.htm
软件包管理之前端管理工具yum http://www.linuxidc.com/Linux/2017-02/140270.htm
CentOS 7 使用阿里云的yum源、PIP源 http://www.linuxidc.com/Linux/2017-01/13966.htm
更多CentOS相关信息见CentOS 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=14
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-08/146364.htm