分类: LINUX
2011-11-01 06:42:53
This page will explain how you can use ISO image files in Linux.
Contents
|
You'll have to make sure that the loop module is loaded before you can use this feature.
sudo modprobe loop Mount a CD ISO ImageWe'll use the regular mount command to mount the ISO image into a folder, just like you would do with a regular drive. The difference is that we pass the -o loop command to specify the loop module, which can handle ISO images.
sudo mount filename.iso /media/iso -t iso9660 -o loopOf course you should make sure that you have created the /media/iso folder ahead of time.
Mount a DVD ISO ImageWhen mounting ISO images of DVDs, you might have to use the UDF type instead of ISO.
sudo mount filename.iso /media/iso -t udf -o loop