Comments on: How to Mount and Unmount an ISO Image in Linux https://www.tecmint.com/how-to-mount-and-unmount-an-iso-image-in-linux/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Sat, 20 Aug 2022 21:03:57 +0000 hourly 1 By: Dmitry https://www.tecmint.com/how-to-mount-and-unmount-an-iso-image-in-linux/comment-page-1/#comment-1865122 Sat, 20 Aug 2022 21:03:57 +0000 http://www.tecmint.com/?p=2132#comment-1865122 In reply to hakan.

It will be very funny when you remove the iso-file and reboot the system.

]]>
By: hakan https://www.tecmint.com/how-to-mount-and-unmount-an-iso-image-in-linux/comment-page-1/#comment-1858605 Sun, 07 Aug 2022 17:17:05 +0000 http://www.tecmint.com/?p=2132#comment-1858605 the mount is old. use fstab. it is easier than mount.

]]>
By: Chris Root https://www.tecmint.com/how-to-mount-and-unmount-an-iso-image-in-linux/comment-page-1/#comment-603307 Fri, 19 Jun 2015 19:12:40 +0000 http://www.tecmint.com/?p=2132#comment-603307 Unable to mount isos using latest kernel in RHEL6.6 using this method.

When attempting to enter: mount -t iso9660 -o loop /patch/to/image.iso /mnt/path (with the proper iso name in the proper directory and /mnt/path created), receiving the error message:

column: invalid option — ‘o’
usage: column [-tx] [-c columns] [file …]

Tried in init 1/3, even an older release of the kernel, still nothing. HOWEVER, apparently the -t and -o options _DO_ work with sudo mount.

]]>
By: nsu2015 https://www.tecmint.com/how-to-mount-and-unmount-an-iso-image-in-linux/comment-page-1/#comment-578630 Fri, 22 May 2015 11:28:12 +0000 http://www.tecmint.com/?p=2132#comment-578630 In reply to Ravi Saive.

Thank you very much
it worked for me

]]>
By: Ravi Saive https://www.tecmint.com/how-to-mount-and-unmount-an-iso-image-in-linux/comment-page-1/#comment-576702 Wed, 20 May 2015 09:56:11 +0000 http://www.tecmint.com/?p=2132#comment-576702 In reply to nsu2015.

@Nsu2015,
You can use following line to /etc/fstab file to auto mount your ISO file permanently at system startup.

/patch/to/image.iso /mnt/path iso9660 loop 0 0
]]>