Mounting an ISO Image

From UNIX Systems Administration
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Mount an ISO Image under AIX

  1. Create a new logical volume
    # mklv -y cdlv -s n -L /dev/cdlv rootvg 4814M <hdisk#>
  2. Create a pseudo-device to copy the image to
    # dd if=<iso image> of=/dev/cdlv
  3. Mount the logical volume like a cd/dvd device
    # mount -v cdrfs -o ro /dev/cdlv /mnt/iso

Mount an ISO Image under Linux

  1. # mount -o loop <iso image> <mount point>