page

Nov 7, 2018

mount iso file in linux

https://askubuntu.com/questions/164227/how-to-mount-an-iso-file


  1. Create a directory to serve as the mount location:
    sudo mkdir /mnt/iso
    
  2. Mount the ISO in the target directory:
    sudo mount -o loop path/to/iso/file/YOUR_ISO_FILE.ISO /mnt/iso
    
  3. Unmount the ISO:
    sudo umount /mnt/iso
    

No comments:

Post a Comment