Mounting ISOs in HP-UX
Written 2010-12-08
Tags:File system HP-UX ISO 9660
- First, su to root, then kick off some PFS(Portable File System) daemons into the shell background:
- `nohup pfs_mountd&`
- `nohup pfsd &`
- Finally, mount the image with:
- `pfs_mount -x unix /full/path/to/iso.iso /full/path/to/mount/point
- The "-x unix" makes the mount so that filenames don't contain extra ISO9660 information and makes all filenames lowercase.
- For more information, `man pfs_mount`