Mounting an ISO Image

From UNIX Systems Administration
Revision as of 15:21, 5 January 2012 by Michael Kohler (talk | contribs) (Created page with "== Mount an ISO Image under AIX == # Create a new logical volume ## <tt>'''# mklv -y cdlv -s n -L /dev/cdlv rootvg 4814M <hdisk#>'''</tt> # Create a pseudo-device to copy the ...")
(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
    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>