Mount ISO image under Linux
This is how to mount an ISO image in linux.
You must be a root user. Otherwise change to root using
$ su -
Create a directory ie, a mount point
# mkdir -p /mnt/disk
Use mount command as follows assuming image is disk.iso
# mount -o loop disk1.iso /mnt/disk
Change directory and list
# cd /mnt/disk
# ls -l
No comments:
Post a Comment