Documentation Comments
Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.
Reality V15.0 ()
Accessing an ISO/DVD Deliverable (External Components Installation Guide) (Access_ISO_DVD_Deliverable.htm)
Utilities are available that can mount an ISO file as an optical disk drive. The ISO file can then be used as if it were a drive. For example, see Virtual Clone Drive from Elaborate Bytes.
Utilities are available that can make a standard ISO file accessible as a block device, like an optical disk, which can then be mounted and accessed as a file system. See examples below.
# mkdir /mnt/iso
# lofiadm -a /tmp/rlty-V14.2.BN.10318.iso /dev/lofi/1
# mount -F hsfs -o ro /dev/lofi/1 /mnt/iso
# cd /mnt/iso
# ./setup
# mkdir /mnt/disk
# mount -o loop disk1.iso /mnt/disk
# cd /mnt/disk
# ./setup
#/usr/sbin/crfs -v jfs -g rootvg -a size=800 -m/cd1iso -Ano -pro -tno -a frag=4096 -a nbpi=4096 -a ag=8
# dd if=image.iso of=/dev/rlv00 bs=10M
# chfs -a vfs=cdrom cd1iso
# mount /cd1iso
# cd /cd1iso
# ./setup
When done unmount and remove the file system:
# rmfs /cd1iso
On Solaris the DVD is normally automatically mounted to the /cdrom/cdrom0 directory.
Note: If the DVD is not automatically mounted, it can be mounted manually using:
mount -F hsfs -r /dev/sr0 /cdrom
mkdir -p /mnt/cdrom
then:
mount -vcdrfs -oro /dev/cd0 /mnt/cdrom
mount /dev/cdrom /mnt/cdrom
Once the DVD is mounted, you can change directory to the mount point:
cd /cdrom/cdrom0(Solaris)
cd /mnt/cdrom(other hosts)