JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris 10 8/11 Installation Guide: Network-Based Installations     Oracle Solaris 10 8/11 Information Library
search filter icon
search icon

Document Information

Preface

Part I Planning to Install Over the Network

1.  Where to Find Oracle Solaris Installation Planning Information

2.  Preconfiguring System Configuration Information (Tasks)

3.  Preconfiguring With a Naming Service or DHCP

Part II Installing Over a Local Area Network

4.  Installing From the Network (Overview)

5.  Installing From the Network With DVD Media (Tasks)

Task Map: Installing From the Network With DVD Media

Creating an Install Server With DVD Media

To Create an Install Server With SPARC or x86 DVD Media

Creating a Boot Server on a Subnet With a DVD Image

To Create a Boot Server on a Subnet With a DVD Image

Adding Systems to Be Installed From the Network With a DVD Image

To Add Systems to Be Installed From the Network With add_install_client (DVD)

Installing the System From the Network With a DVD Image

SPARC: To Install the Client Over the Network (DVD)

x86: To Install the Client Over the Network With GRUB (DVD)

6.  Installing From the Network With CD Media (Tasks)

7.  Patching the Miniroot Image (Tasks)

8.  Installing Over the Network (Examples)

9.  Installing From the Network (Command Reference)

Part III Installing Over a Wide Area Network

10.  WAN Boot (Overview)

11.  Preparing to Install With WAN Boot (Planning)

12.  Installing With WAN Boot (Tasks)

13.  SPARC: Installing With WAN Boot (Tasks)

14.  SPARC: Installing With WAN Boot (Examples)

15.  WAN Boot (Reference)

Part IV Appendices

A.  Troubleshooting (Tasks)

B.  Installing or Upgrading Remotely (Tasks)

Glossary

Index

Creating a Boot Server on a Subnet With a DVD Image

You must create an install server to install the Oracle Solaris software on a system from the network. You do not always need to set up a boot server. A boot server contains enough of the boot software to boot systems from the network, and then the install server completes the installation of the Oracle Solaris software.

To Create a Boot Server on a Subnet With a DVD Image

  1. On the system you intend to make the boot server for the subnet, log in and become superuser or assume an equivalent role.

    Note - Roles contain authorizations and privileged commands. For more information about roles, see Configuring RBAC (Task Map) in System Administration Guide: Security Services.


    The system must have access to a remote current Oracle Solaris release disc image, which is normally the install server. If you use a naming service, the system should also be in a naming service. If you do not use a naming service, you must distribute information about this system by following your site's policies.

  2. Mount the Oracle Solaris DVD from the install server.
    # mount -F nfs -o ro server_name:path /mnt
    server_name:path

    Is the install server name and absolute path to the disc image

  3. Create a directory for the boot image.
    # mkdir -p boot_dir_path
    boot_dir_path

    Specifies the directory where the boot software is to be copied

  4. Change to the Tools directory on the Oracle Solaris DVD image.
    # cd /mnt/Solaris_10/Tools
  5. Copy the boot software to the boot server.
    # ./setup_install_server -b boot_dir_path
    -b

    Specifies to set up the system as a boot server

    boot_dir_path

    Specifies the directory where the boot software is to be copied


    Note - The setup_install_server command indicates whether you have enough disk space available for the images. To determine available disk space, use the df -kl command.


  6. Change directories to root (/).
    # cd /
  7. Unmount the installation image.
    # umount /mnt

    You are now ready to set up systems to be installed from the network. See Adding Systems to Be Installed From the Network With a DVD Image.

Example 5-2 Creating a Boot Server on a Subnet (DVD)

The following example illustrates how to create a boot server on a subnet. These commands copy the boot software from the Oracle Solaris DVD image to /export/home/dvdsparc on the local disk of a boot server named crystal.

# mount -F nfs -o ro crystal:/export/home/dvdsparc /mnt 
# mkdir -p /export/home/dvdsparc
# cd /mnt/Solaris_10/Tools
# ./setup_install_server -b /export/home/dvdsparc
# cd /
# umount /mnt
Continuing the Installation

After you set up the boot server, you must add the client as an installation client. For information about how to add client systems to install over the network, see Adding Systems to Be Installed From the Network With a DVD Image.

See Also

For additional information about the setup_install_server command, see install_scripts(1M).