linux centos Redhat内网镜像挂载

本文已contos为例  Redhat挂载方式是一样的

1.新建/tmp文件夹,上传.iso文件

mkdir /tmp

2.挂载镜像文件  (临时挂在,重启服务器失效)

2.1挂载命令

mount -o loop /tmp/CentOS-7-power9-Everything-2003.iso /mnt

此种方式是挂载到  /mnt下

2.2.通过df -h查看是否挂在成功

df -h

 2.3配置yum源

2.3.1备份原有yum源

mkdir /etc/yum.repos.d/yumbak
cd /etc/yum.repos.d
mv *.repo yumbak

2.3.2新建yum源

vim /etc/yum.repos.d/local.repo

2.3.3在local.repo中插入以下内容

[local]
name=local
baseurl=file:///mnt
gpgcheck=0
enabled=1

baseurl=file:///mnt 需修改为本人挂在路径

2.3.4清空缓存 并重新加载

yum clean all && yum makecache

3.永久挂在镜像(重启生效)

3.1挂在镜像 参照2.1

3.2编辑/etc/fstab文件

vim /etc/fstab

插入以下内容

/tmp/CentOS-7-power9-Everything-2003.iso /mnt   iso9660 defaults 0 0

/tmp/CentOS-7-power9-Everything-2003.iso  镜像地址

/mnt  挂载路径

iso9660  类型   iso9660:镜像方式    ext4:磁盘方式

3.3配置yum源 参照2.3.2—2.3.4

4.移除

umount  /mnt

 

 附阿里云镜像下载配置

下载地址

https://developer.aliyun.com/mirror/centos-altarch/?spm=a2c6h.25603864.0.0.153c7c65ZuKnAK



 

posted @ 2023-06-01 10:16  转身瞬间  阅读(394)  评论(0编辑  收藏  举报