问题描述
- Linux系统当中的几种挂载,请求大神赐解。
-
近期我学习了Linux系统当中的挂载,在VMVARE虚拟机中用ISO影像文件挂载REDHAT软件包,老是不会用。挂在时虚拟机老是提示指明文件系统? 请问各位大神,自动挂载,手动挂载,触发挂载分别在何时会用?各自的命令又是什么? 以及命令格式?非常感谢。
解决方案
你说的挂载和linux没关系,就是在vmware中插入光盘,选择你的光盘镜像就可以了。
解决方案二:
通过-t来指定文件系统 , 光盘和iso文件一般是mount -t iso9660 isofile dir
解决方案三:
Create a directory to serve as the mount location:
sudo mkdir /media/iso
Mount the ISO in the target directory:
sudo mount -o loop path/to/iso/file/YOUR_ISO_FILE.ISO /media/iso
Unmount the ISO:
sudo umount /media/iso
时间: 2024-12-30 14:30:23