Advertisement
corrosiontears

Montando Imagens ISO/NGR pelo Terminal Linux

Jun 20th, 2013
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. Procedure to mount ISO images under Linux
  2.  
  3. 1) You must login as a root user, if not root user then switch to root user using following command:
  4. $ su -
  5.  
  6. 2) Create the directory i.e. mount point:
  7. # mkdir -p /mnt/disk
  8.  
  9. 3) Use mount command as follows to mount iso file called disk1.iso:
  10. # mount -o loop disk1.iso /mnt/disk
  11.  
  12. 4) Change directory to list files stored inside an ISO image:
  13. # cd /mnt/disk
  14. # ls -l
  15.  
  16. To Mount NGR images under Linux
  17.  
  18. # mount -t iso9660 -o loop, offset=307200 imagem.ngr /media/cdrom
  19.  
  20. Link for tutorials:
  21. http://debianmaniaco.blogspot.com.br/2012/12/montando-imagens-de-cddvd-no-linux.html
  22. http://www.vivaolinux.com.br/dica/Montando-imagens-ISO
  23. http://www.cyberciti.biz/tips/how-to-mount-iso-image-under-linux.html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement