Mounting an ISO Image

From UNIX Systems Administration
Jump to navigation Jump to search

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>