Mostrando postagens com marcador ISO. Mostrar todas as postagens
Mostrando postagens com marcador ISO. Mostrar todas as postagens

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

How to create a ISO from CD/DVD-rom?

sexta-feira, 6 de janeiro de 2012

It's a easy procedure but very useful, you can do it through dd command:

# dd if=/dev/rdsk/c2t0d0 of=/MEDIA/disk.iso bs=1024k