How to mount a ISO

domingo, 8 de janeiro de 2012

To mount an ISO image on HP-UX 11.31 (11iv3)

In the first moment is necessary create a volume to receive the iso

# lvcreate -n cdrom -L 5000 vg00
(Put your iso size in the -L parameter)

Use the dd command to copy the content of your iso to your new volume

# dd if=image.iso of=/dev/vg00/rcdrom bs=4096k

Create the mount point

# mkdir /cdrom

Mount it

# mount /dev/vg00/cdrom /cdrom