Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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
- To Mount NGR images under Linux
- # mount -t iso9660 -o loop, offset=307200 imagem.ngr /media/cdrom
- Link for tutorials:
- http://debianmaniaco.blogspot.com.br/2012/12/montando-imagens-de-cddvd-no-linux.html
- http://www.vivaolinux.com.br/dica/Montando-imagens-ISO
- http://www.cyberciti.biz/tips/how-to-mount-iso-image-under-linux.html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement