一、挂载本地光盘到系统:把rhel6.2安装光盘放入光驱,在终端命令行下操作
mkdir /media/rhel #新建挂载目录
mount /dev/cdrom /media/rhel #挂载光盘到/media/rhel目录下
cd /media/rhel #进入挂载目录
ls #查看挂载目录,光盘挂载成功
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
二、配置本地yum源
cd /etc/yum.repos.d/ #进入yum配置目录
touch rhel-media.repo #建立yum配置文件
vi rhel-media.repo #编辑配置文件,添加以下内容
[rhel-media] name=Red Hat Enterprise Linux 6.2 #自定义名称 baseurl=file:///media/rhel #本地光盘挂载路径 enabled=1 #启用yum源,0为不启用,1为启用 gpgcheck=1 #检查GPG-KEY,0为不检查,1为检查 gpgkey=file:///media/rhel/RPM-GPG-KEY-redhat-release #GPG-KEY路径
三、清除yum缓存,使用yum install自动安装软件
yum clean all #清除yum缓存
yum install php #安装php
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
至此,RHEL 6.2配置本地yum源教程完成,现在可以使用yum install命令安装软件了。
» 转载请注明来源:系统运维 » RHEL 6.2配置本地yum源
不错哦
安装完RHEL 6.2后,配置网卡IPV4地址,无法配置?
CentOS 6.0 设置IP地址、网关、DNS | 系统运维
http://www.osyunwei.com/archives/423.html
我的镜像里面少了很多东西,并且还没有server
http://rhel.ieesee.net/uingei/rhel-server-6.2-i386-dvd.iso
http://rhel.ieesee.net/uingei/rhel-server-6.2-x86_64-dvd.iso
这里下载镜像吧
在执行yum clean all时有个错误提示
No such file or directory :’/var/cache/yum/i386/6Server
不知道有没有影响?
接着执行的yum install php没有什么错误。
mkdir -p /var/cache/yum/i386/6Server
重启一下又出现老问题了。。。。不知道怎么搞了。。。
[root@localhost network-scripts]# yum install php
Loaded plugins: refresh-packagekit, rhnplugin
This system is not registered with RHN.
RHN support will be disabled.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: InstallMedia. Please verify its path and try again
我在安装的时候会出现错误,
Running Transaction
Installing : system-config-cluster 1/1
error: failed to stat /media/RHEL_5.5 i386 DVD: No such file or directory
不知道是什么原因?
[root@rehl6 yum.repos.d]# yum install cluster-glue resource-agents pacemaker
Loaded plugins: product-id, refresh-packagekit, security, subscription-manager
Updating certificate-based repositories.
Unable to read consumer identity
HighAvailability | 4.0 kB 00:00 …
LoadBalancer | 3.9 kB 00:00 …
file:///media/rhrl/Packages/repodata/repomd.xml: [Errno 14] Could not open/read file:///media/rhrl/Packages/repodata/repomd.xml
Trying other mirror.
ResilientStorage | 4.0 kB 00:00 …
file:///media/rhel/ScalableFileSystem/repodata/repomd.xml: [Errno 14] Could not open/read file:///media/rhel/ScalableFileSystem/repodata/repomd.xml
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: ScalableFileSystem. Please verify its path and try again
[root@rehl6 yum.repos.d]#
不知道是什么原因?
写的很好啊,很详细,菜鸟学习了