Friday, May 21, 2010

Mount and ISO on Linux

There are multiple reasons why you might want to mount an ISO to access the files contained in it. Here some simple steps to make this happen.

login as root or utilize the sudo command to create a directory to use as a mount point. I typically make /mnt/iso_image

Use the following command to mount the file called image1.iso:
mount -o loop image1.iso /mnt/iso_image

0 comments: