Mount iso image into linux server

 for mounting an .iso image on linux server, place the respective .iso file on any desire loction

here the file has been placed /tmp location

create you desired mount path

# mkdir /mnt/iso

//mount your file

# mount -t iso9660 -o loop /tmp/HO_DP_mount_file.iso /mnt/iso

mount: /dev/loop0 is write-protected, mounting read-only

# df -h

/dev/loop0                      2.6G  2.6G     0 100% /mnt/iso

# ls /mnt/iso/

for copy those files into system for keeping them

# cp -pRf /mnt/iso /tmp/ISO

//then unmount the /mnt/iso then the file will be gone

# umount /mnt/iso

---------------------

Post a Comment

0 Comments