![]() |
![]() |
| ||||||||||||||||||||||||||
Chapter 14Preparing to Install From the Network With DVD Media (Tasks)This chapter describes how to use DVD media to set up your network and systems to install the Solaris software from the network. Network installations enable you to install the Solaris software from a system that has access to the Solaris 9 disc images, called an install server, to other systems on the network. You copy the contents of the Solaris 9 DVD media to the install server's hard disk. Then, you can install the Solaris software from the network by using any of the Solaris installation methods. This chapter covers the following topics:
Task Map: Preparing to Install From the Network With DVD MediaTable 14-1 Task Map: Setting Up an Install Server With DVD Media
Creating an Install Server With DVD MediaThe install server contains the installation image needed to install systems from the network. You must create an install server to install the Solaris software on a system from the network. You do not always need to set up a boot server.
Note - If you want use the Solaris DVD media to set up an install server on a system that is running the Solaris 2.6 or 7 operating environment, you must first apply one of the following patches.
|
# mkdir -p install_dir_path |
Change to the Tools directory on the mounted disc.
For SPARC DVD media, type:
# cd /cdrom/cdrom0/s0/Solaris_9/Tools |
For x86 DVD media, type:
# cd /cdrom/cdrom0/Solaris_9/Tools |
In the previous examples, cdrom0 is the path to the drive that contains the Solaris operating environment DVD media.
Copy the DVD image in the drive to the install server's hard disk.
# ./setup_install_server install_dir_path |
| install_dir_path | Specifies the directory where the DVD image is to be copied |
Note - The setup_install_server command indicates whether you have enough disk space available for the Solaris Software disc images. To determine available disk space, use the df -kl command.
Decide if you need to make the install server available for mounting.
If the install server is on the same subnet as the system to be installed or you are using DHCP, you do not need to create a boot server. Proceed to Step 10.
If the install server is not on the same subnet as the system to be installed and you are not using DHCP, complete the following steps.
Verify that the path to the install server's image is shared appropriately.
# share | grep install_dir_path |
| install_dir_path | Specifies the path to the installation image where the DVD image was copied |
If the path to the install server's directory is displayed and anon=0 is displayed in the options, proceed to Step 10.
If the path to the install server's directory is not displayed or you do not have anon=0 in the options, continue.
Make the install server available to the boot server by adding this entry to the /etc/dfs/dfstab file.
share -F nfs -o ro,anon=0 -d "install server directory" install_dir_path |
Make sure that the install server's directory path is correctly shared.
# ps -ef | grep nfsd |
If the nfsd daemon is not running, start it.
# /etc/init.d/nfs.server start |
If the nfsd daemon is running, share the install server.
# shareall |
Change directories to root (/).
# cd / |
Eject the Solaris DVD.
Decide if you want to patch the files that are located in the miniroot (/install_dir_path/Solaris_9/Tools/Boot) on the net install image that was created by setup_install_server. Patching a file might be necessary if a boot image has problems. If no, continue. If yes, use the patchadd -C command to patch the files that are located in the miniroot.
Caution - Don't use the patchadd -C command unless you have read the Patch README instructions or have contacted your local Sun support office.
Decide if you need to create a boot server.
If you are using DHCP or the install server is on the same subnet as the system to be installed, you do not need to create a boot server. Proceed to Adding Systems to Be Installed From the Network With a DVD Image.
If you are not using DHCP and the install server and the client are on a different subnet, you must create a boot server. Proceed to Creating a Boot Server on a Subnet With a DVD Image.
Previous Contents Index Next ![]() |