码迷,mamicode.com
首页 > 其他好文 > 详细

基于虚拟机的centos6.5 搭建本地光盘yum源

时间:2018-09-24 00:26:30      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:地址   ati   isa   pki   资源   enabled   虚拟   http   就是   

在线yum安装必须要保持服务器能够连入网络并且他下载的还会比较慢因为地址大部分多是国外的下载站。另外yum在线下载的都是比较新的软件包,可能不是很稳定,那么使用yum的本地资源就是光盘里的RPM包,让本地光盘作为yum源,这种源的版本可能不是最新的但是相对比较稳定,这种方式一般在工作中比常用。下面就来介绍下光盘yum源安装。

第一步:
虚拟机以vmwareworkstations 为例安装centos6.5虚拟机 并设置连接镜像1
技术分享图片

 

 第二步:挂载光盘
[root@server ~]#mkdir cdrom //创建挂载点。

[root@server ~]# mount /dev/sr0 /mnt/cdrom  //手动挂载。

 

[root@server ~]# mount

 技术分享图片

//显示已经挂载成功

第三步:将默认的网络yum源失效

[root@server ~]# ls /etc/yum.repos.d/

CentOS-Base.repo  CentOS-Debuginfo.repo  CentOS-Media.repo  CentOS-Vault.repo[Y1] 

 

 [Y1]默认情况下使用的是第一个也就是网络yum源文件生效,如果使他生效只需要将enable=1即可。如果让所有的yum源不生效那么把enable=0就可以。

第三步:修改yum源  配置文件  生效

[root@server ~]# 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-6.  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=c6-media [command]

#

# or for ONLY the media repo, do this:

#

#  yum --disablerepo=\* --enablerepo=c6-media [command]

 

[c6-media]

name=CentOS-$releasever - Media

baseurl=file:///mnt/cdrom/        //将这里修改为光盘挂载的地址

#        file:///media/cdrom/   

#        file:///media/cdrecorder/    //将这两个没用的地址给注释掉就是#

gpgcheck=1

enabled=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

"/etc/yum.repos.d/CentOS-Media.repo" 21L, 629C

:wq!//保存退出

第五步:查看rpm包文件  搭建成功

技术分享图片

技术分享图片

 

基于虚拟机的centos6.5 搭建本地光盘yum源

标签:地址   ati   isa   pki   资源   enabled   虚拟   http   就是   

原文地址:https://www.cnblogs.com/YoAo/p/9694046.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!