赞
踩
本方法适用于Redhat7系列本地yum源的配置
测试环境:VMware Workstation 16;
Redhat7.8
使用Linux系统镜像iso文件作为本地yum源,挂载iso镜像文件到CD/DVD上
mount /dev/sr0 /mnt
若取消挂载则使用:umount /mnt
查看是否挂在成功
df -h
此时,iso镜像文件已经作为本地yum源挂载到 /mnt 目录下了。
cd /etc/yum.repos.d/
vi /etc/yum.repos.d/rhel.repo
配置文件内容:
- [rhel]
- name=rhel
- baseurl=file:///mnt
- enabled=1
- gpgcheck=0
- # 清除yum缓存
- yum clean all
- # 加载本地yum源
- yum makecache
使用yum命令安装软件
yum -y install vim
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。