Sunday, March 3, 2013

Mount ISO on Linux

Mount an .iso on Linux To Mount an ISO file, You can mount ISO file via the loop devices under Linux. But how ? You need to use this mount command below : 1) First login as root, by type : $ su 2) Create folder for mount point # mkdir -p /mnt/mountiso 3) Use mount command to mount iso file. # mount -o loop filename.iso /mnt/mountiso 4) Change directory to your mount point. # cd /mnt/mountiso #...