Advertisement
mouhsineelachbi

Mount an ISO image under Linux

Jun 2nd, 2014
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement