Mounting an ISO Image

From UNIX Systems Administration
Revision as of 16:21, 5 January 2012 by Michael Kohler (talk | contribs)
Jump to navigation Jump to search

Mount an ISO Image under AIX

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

Mount an ISO Image under Linux

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