Skip to content

Instantly share code, notes, and snippets.

@pif
Created January 30, 2011 09:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pif/802712 to your computer and use it in GitHub Desktop.
Save pif/802712 to your computer and use it in GitHub Desktop.
mount ISO images under Linux
Procedure to mount ISO images under Linux
1) You must login as a root user, if not root user then switch to root user using following command:
$ su -
2) Create the directory i.e. mount point:
# mkdir -p /mnt/disk
3) Use mount command as follows to mount iso file called disk1.iso:
# mount -o loop disk1.iso /mnt/disk
4) Change directory to list files stored inside an ISO image:
# cd /mnt/disk
# ls -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment