Mounting an ISO Image

From UNIX Systems Administration
Revision as of 19:05, 1 March 2017 by Michael Kohler (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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>