Skip to main content
Hitachi Vantara Knowledge

Mounting ISO Images

Mounting ISO Images

The following instructions are for mounting ISO Images on UNIX and Windows systems.

 

Solaris

# mount -F hsfs `lofiadm -a file.iso` /mntpoint

 

Linux

1) You must login as a root user, if not root user then switch to root user using following command:
$ su -

2) Create the directory i.e. mount point:
# mkdir -p /mnt/disk

3) Use mount command as follows to mount iso file called disk1.iso:
# mount -o loop -t iso9660 disk1.iso /mnt/disk

4) Change directory to list files stored inside an ISO image:
# cd /mnt/disk
# ls -l

 

AIX

Mounting ISO images on AIX

There is a known problem with mounting ISO images on the AIX platform. To workaround the problem, complete the following instructions:

1. Obtain the size of the image.

For example:

# ls -al
total 731594
drwxr-xr-x 2 root system 512 Aug 18 11:33 .
drwxr-xr-x 6 root system 512 Aug 18 11:32 ..
-rw-r--r-- 1 root system 374575104 Apr 29 02:59 DLMAIX_061000.iso

2. Identify the nearest multiple of 128 MB that will provide enough space for the image. In the above example, the image is approximately 374 MB, so use 384 MB as an image size.

Make a logical volume of this size. Ensure that there is enough space on the physical volume. For example, hdisk0.

# mklv -y cdlv -s n -L /dev/cdlv rootvg 384M hdisk0

If the command fails, increase the volume size by a multiple of 128.


3. Use the dd command to create a pseudo-device. Ensure that the partition has enough space for the pseudo-device. In the following example command, the pseudo-device is /dev/cdlv.

# dd if=/opt/software/iso/DLMAIX_061000.iso of=/dev/cdlv

Note that this command may take a long time and will create two dd processes.


4. Mount the device like a CD-ROM in AIX. Ensure that the mount point exists.

# mount -v cdrfs -o ro /dev/cdlv /mnt/iso

5. Change directory into /mnt/iso.

 

Windows XP

The following software is not supported or endorsed by Hitachi. See Disclaimer.

Microsoft has an unsupported "Virtual CD-ROM Control Panel for Windows XP". It contains no setup (only instructions).

Another option would be to use IsoBuster (see below).

 

Windows Vista

The following software is not supported or endorsed by Hitachi. See Disclaimer.

There are several utilities that provide this functionality for Vista:

 

Disclaimer

These software links are provided AS IS, with no warranty of any kind. Neither Hitachi Vantara (Hitachi) nor Hitachi Ltd. warrants or represents the content of this software. Hitachi and Hitachi Ltd. disclaim all express and implied warranties, including the implied warranties of merchantability, fitness for a particular purpose and non-infringement. You are wholly responsible for your use of these links and the results of such use. Neither Hitachi nor Hitachi Ltd. shall be liable for any damages, direct, indirect, incidental, special, consequential or otherwise for the information, your use of the information or the result of such use.

 

  • Was this article helpful?