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

Posted yoao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于虚拟机的centos6.5 搭建本地光盘yum源相关的知识,希望对你有一定的参考价值。

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

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

 

 第二步:挂载光盘
[[email protected] ~]#mkdir cdrom //创建挂载点。

[[email protected] ~]# mount /dev/sr0 /mnt/cdrom  //手动挂载。

 

[[email protected] ~]# mount

 技术分享图片

//显示已经挂载成功

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

[[email protected] ~]# 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源  配置文件  生效

[[email protected] ~]# 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源的主要内容,如果未能解决你的问题,请参考以下文章

小凡带你搭建本地的光盘yum源

Centos6.5使用光盘作为本地的yum源

CentOS6.5使用createrepo搭建本地yum源

pxe 引导批量安装

一个基于虚拟机的hadoop平台的简单搭建

CentOS7 配置网卡 虚拟机挂载光盘 搭建本地yum源 修改主机名