一、挂载本地Rethat6.5系统镜像文件
在将Rethat6.5系统iso文件上传至/Rethat_iso下
#mkdir /Rethat_iso
#mkdir /Rethat_iso/iso
挂在本地iso文件(将rethat6.5镜像系统上传至/Rethat_iso/iso下)
#mount -o loop -t iso9660 /Rethat_iso/Rethat_iso/iso /Rethat_iso/iso
ls #查看挂载目录,光盘挂载成功
二、配置本地yum源
#cd/etc/yum.repos.d/ #进入yum配置目录
#mvrhel-source.repo rhel-source.repo.bak
#touch rhel.repo #建立yum配置文件
#vi rhel.repo #编辑配置文件,添加以下内容
[rhel]
#自定义名称
name=Red Hat Enterprise Linux 6.5
#本地光盘挂载路径
baseurl=file:///Rethat_iso/iso
#启用yum源,0为不启用,1为启用
enabled=1
#检查GPG-KEY,0为不检查,1为检查
gpgcheck=1
#GPG-KEY路径
gpgkey=file:///Rethat_iso/iso/RPM-GPG-KEY-redhat-release
三、清除yum缓存,使用yum install自动安装软件
yum cleanall #清除yum缓存
yum installphp #安装php
原文地址:http://itsoft.blog.51cto.com/3278551/1567628