# create a logical filesystem for the ISO file
lofiadm -a /ora/share/mira-rtm-oracle-dumps.iso /dev/lofi/1# Create a temporary mount point for the ISO file
mkdir /dvd# Mount logical filesystem into temporary mount point
mount -F hsfs /dev/lofi/1 /dvd# Check the exploded files
cd /dvd
ls# Make a directory to copy over exploded files from temporary mount
mkdir /software
cd /dvd
cp -R * /software# delete logical file system and temporary mount directories.
umount /dvd
lofiadm -d /dev/lofi/1
rm -r /dvd
via blogs.sun.com
No comments:
Post a Comment