由于在VMware虚拟机上最小化安装了不带图形界面的CentOS,在安装VMware tools时报错,提示要安装perl,在无发联网的情况下,可以选择用Centos安装光盘配置本地yum源进行安装。
1、将安装光盘ISO文件加载到光驱中,将光驱挂载到系统文件目录下:
mkdir -p /mnt/cdrom #创建挂载目录 mount /dev/cdrom /mnt/cdrom #挂载光盘
2、修改yum源配置文件:
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,内容大致如下
# 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是否配置成功
yum list
4、清除yum缓存
yum clean all
当然,以上方法也可以先将光盘内容复制到本地文件系统中,然后指定该目录作为源地址。
转载于:https://blog.51cto.com/dragonko/1748741