Mount .iso File under Linux

if you have an iso-image of a cd/dvd you can easily mount it with

[codesyntax lang=”bash”]

sudo mount /path/to/an.iso /media/cdrom -t iso9660 -o loop

[/codesyntax]

Leave a Comment