Mount ISO image in hp unix : How to ?

On HP-UX 11.11

Start the pfs mount & pfs daemon:

# nohup pfs_mountd &
# nohup pfsd &

create the directory to mount to and run the pfs_mount command:

# mkdir /cdrom
# pfs_mount -o xlat=UNIX /Path/isofile /cdrom

========================

On HP-UX 11.31

Create a new logical volume say ‘isoimage’ of size slightly greater than the size of your iso image in MB.

#lvcreate -L size_of_your_isoimage -n iso /dev/vg01
#dd if=path/to/isoimage of=/dev/vg01/risoimage bs=64
#mount /dev/vg00/iso /cdrom

==========================

Post a Comment

0 Comments