For easier management of upgrades or installations, you can copy the software image to an FTP site in your network. For more information, see the following procedures:
To prepare the CD image on a Solaris system:
- # lofiadm -a pathname/filename
- # mount -F hsfs /dev/lofi/1 /mnt
- # cp –r /mnt pathname
- # umount /mnt
- # lofiadm -d /dev/lofi/1
For example:
- # lofiadm -a /ftp/public/SRC-PE--3.0.0-R-1-x86_64.iso
- # mount -F hsfs /dev/lofi/1 /mnt
- # cp –r /mnt /ftp/SRC-PE--3.0.0-R-1-x86_64
- # umount /mnt
- # lofiadm -d /dev/lofi/1
To prepare the CD image on a Linux system:
- # mount -o ro,loop filename /mnt
- # cp –r /mnt pathname
- # umount /mnt
For example:
- # mount -o ro,loop SRC-PE-3.0.0-R-1-x86_64.iso /mnt
- # cp –r /mnt /ftp/SRC-PE--3.0.0-R-1-x86_64
- # umount /mnt
To prepare the compressed file on a Solaris system:
- # cd pathname
- # gunzip pathname/filename
- # tar xf pathname/filename
For example:
- # cd /ftp
- # gunzip /ftp/SRC-PE--3.0.0-R-1-x86_64.tgz
- # tar xf /ftp/SRC-PE--3.0.0-R-1-x86_64.tar
To prepare the compressed file on a Linux system:
- # tar -C pathname -zxf filename
For example:
- # tar -C /ftp/ -zxf SRC-PE--3.0.0-R-1-x86_64.tgz