Friday, February 12, 2016

How to Mount an ISO file in Linux

The following command can be used to mount an ISO file in Linux (any flavor).

]# mkdir -pv /mnt/iso_dir
]# mount -o loop iso_file.iso /mnt/iso_dir


To unmount, run the following command.

]# umount /mnt/iso_dir

0 comments:

Post a Comment