Mounting an ISO Image: Difference between revisions

From UNIX Systems Administration
Jump to navigation Jump to search
(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 ...")
 
No edit summary
Line 9: Line 9:
== Mount an ISO Image under Linux ==
== Mount an ISO Image under Linux ==
# <tt>'''# mount -o loop <iso image> <mount point>'''</tt>
# <tt>'''# mount -o loop <iso image> <mount point>'''</tt>
[[Category:AIX]]
[[Category:Linux]]

Revision as of 16:21, 5 January 2012

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>