赞
踩
/home/iso/rhel-8.4-x86_64-dvd.iso
mkdir /mnt/yum_redhet8
mount /home/iso/rhel-8.4-x86_64-dvd.iso /mnt/yum_redhet8
cp -r /mnt/yum_redhet8/* /home/iso/html/
cd /home/iso/html/
python2 运行
nohup python -m SimpleHTTPServer 20000 &
python3 运行
nohup python -m http.server &
http://xx.xx.xx.xx:20000/
[BaseOS]
name=BaseOS
baseurl=http://xx.xx.xx.xx:20000/BaseOS/
gpgcheck=0
enabled=1
[AppStream]
name=AppStream
baseurl=http://xx.xx.xx.xx:20000/AppStream
enabled=1
gpgcheck=0
yum clean all
yum makecahce
redhat安装完成后是不能直接使用yum安装的,会提示我们没有注册,所以要修改成Centos的源
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
这里使用阿里云Centos8yum源
cd /etc/yum.repos.d/
下载阿里云yum源
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo
将redhat源名称修改
mv redhat.repo redhat.repo_bak
这个时候我们已经可以使用阿里云yum源了,但是还是会有注册提示,可以忽略
我们可以通过修改以下两个文件的Enable=0来禁用Subscription Management提示
vi /etc/yum/pluginconf.d/product-id.conf
vi /etc/yum/pluginconf.d/subscription-manager.conf
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。