askubuntu.com/questions/164227/how-to-mount-an-iso-file
—
Ciro Santilli冠状病毒审查六四事件法轮功
Answers:
Linux有一个回送设备,可让您挂载包含文件系统的文件。这将适用于分区映像(即ext3备份映像),但也适用于cdrom映像。
此命令允许您安装iso映像。为了使其工作,/mnt/disk
必须已经存在:
mount -o loop disk.iso /mnt/disk
该-o
开关用于安装选项。该loop
选项告诉mount命令找到第一个/dev/loopX
设备并使用它。
-t iso9660
。自动检测对我有用。我还建议/usr/bin/file disk.iso
确定格式(iso9660与udf)。
以下命令有助于:
挂载-o循环-t iso9660 file.iso / mnt / test
在这里找到:http : //www.tech-recipes.com/rx/857/mount-an-iso-file-in-linux/
-t iso9660
和-t udf
。两者都可以挂载,但是iso9660导致文件名小写(例如video_ts.ifo
)。通常,这些文件应大写。使用时udf
,的确是大写。两种类型在我使用时都能正常工作vlc /mnt/test
。实际上,我可以vlc file.iso
不需要回送设备。我使用了/ usr / bin / file file.iso`报告UDF 1.5格式。
You will probably need to create folder first like this..
$ mkdir/mnt/cd/
$ mount -o loop -t iso9660 whatever.iso /mnt/cd/
and think this work
$ umount /mnt/cd/
$ mount -o loop -t iso9660 whatever.iso /mnt
if you need to mount hardrive , usb .. osv..
find out name and place..
$ fdisk -l
Device Start End Sectors Size Type
/dev/sdb1 2048 1050623 1048576 512M BIOS boot
/dev/sdb2 1050624 18020351 16969728 8,1G Linux filesystem
/dev/sdb3 18020352 30365695 12345344 5,9G Linux swap
$ mkdir /mnt/sdb2
$ mount /dev/sdb2 /mnt/sdb2
$ cd /mnt/sdb2/
请按照下面显示的简单步骤操作:只需创建目录:
mkdir /mnt/isomount
现在,使用以下命令挂载iso映像。
mount -t iso9660 -o loop /app/file.iso /mnt/isomount/
哪里:
-t:用于指示文件系统类型。
iso9660:这是国际组织媒体(CD / DVD)的标准。
-o:以-o标志指定选项,后跟逗号分隔的选项字符串。
loop:这是一个伪设备或伪设备,可让您装载文件并将文件作为块设备进行访问。循环设备通常用于ISO映像。我们可以通过以下命令检查已安装的设备。