Centos配置本地yum源

由于在VMware虚拟机上最小化安装了不带图形界面的CentOS,在安装VMware tools时报错,提示要安装perl,在无发联网的情况下,可以选择用Centos安装光盘配置本地yum源进行安装。


1、将安装光盘ISO文件加载到光驱中,将光驱挂载到系统文件目录下:

1
2
mkdir  -p  /mnt/cdrom  #创建挂载目录
mount  /dev/cdrom  /mnt/cdrom  #挂载光盘


2、修改yum源配置文件:

1
2
3
4
ls  -l  /etc/yum .repos.d/   #进入yum源配置文件目录
mv  CentOS-Base.repo CentOS-Base.repose_bak  #重命名或删除CentOS-Base.repo文件
mv  CentOS-Debuginfo.repo CentOS-Debuginfo.repo_bak  #重命名或删除CentOS-Debuginfo.repo文件
vi  CentOS-Media.repo  #编辑文件CentOS-Media.repo,内容大致如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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/             #yum源目录,源地址
gpgcheck=1                 #检查GPG-KEY,0为不检查,1为检查
enabled=1                #是否用该yum源,0为禁用,1为使用
gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6    #gpgcheck=0时无需配置


3、测试yum是否配置成功

1
yum list


4、清除yum缓存

1
yum clean all

你可能感兴趣的:(For,Linux)