RedHat 9 改变了以往的授权模式,使得用户必须要运行 rhc 进行注册激活,否则在系统安装完成后,由于我们的 rhel 系统在多数情况下,都是处于内网环境,无法通过 rhc 到红帽子的官方网站上进行注册,而且很多的时候,由于我们是在内网环境下,我们也不需要持续更新,相较而言,系统稳定才是{BANNED}中国第一位的,这样一来,即使是简单的软件安装也变得异常麻烦,极为不便。
实际上,我们所需要的大多数软件,都是可以通过 RHEL9 的安装介质进行安装的。那么有没有办法通过搭建本地软件仓库源的方式来实现软件的追加安装呢,办法是有的,只是麻烦了一些。
方法如下:
step 1:创建本地软件仓库文件目录
step 2: 挂载光盘镜像到本地软件仓库目录
-
# mount -r /dev/cdrom /media/RHEL
step 3: 编写本地软件仓库源配置文件 /etc/yum.repos.d/rhel-media.repo
-
# vi /etc/yum.repos.d/rhel-media.repo
内容如下:
-
# redhat-Media.repo
-
#
-
# This repo can be used with mounted DVD media, verify the mount point for
-
# RedHat-9. 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=c7-media [command]
-
#
-
# or for ONLY the media repo, do this:
-
#
-
# yum --disablerepo=\* --enablerepo=redhat9-BaseOS [command]
-
-
[redhat9-BaseOS]
-
name=REDHAT-$releasever - Media
-
baseurl=file:///media/RHEL/BaseOS
-
file:///media/cdrom/
-
file:///media/cdrecorder/
-
gpgcheck=1
-
enabled=1
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
-
-
[redhat9-AppStream]
-
name=REDHAT-$releasever - Media
-
baseurl=file:///media/RHEL/AppStream
-
file:///media/cdrom/
-
file:///media/cdrecorder/
-
gpgcheck=1
-
enabled=1
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
step 4:重建软件仓库源缓存
-
# dnf clean
-
# dnf makecache
阅读(116) | 评论(0) | 转发(0) |