[Ubuntu]opening to an ISO image
If you have a
.ISO file and you want to access its content under Linux:
- GUI: just use archive manager to either open the .ISO and access its contents.
- In console mode: you must mount the file abc.ISO for e.g in the directory /tmp. We must
- First create the mount directory
$ sudo mkdir /media/ISO
$ sudo mount -o loop /tmp/fichier.iso /media/ISO
- To unmount the file you just run
$ sudo umount /media/ISO