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)

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

Task Map: Installing From the Network With CD Media

Creating an Install Server With SPARC or x86 CD Media

SPARC: To Create an Install Server With SPARC or x86 CD Media

Creating a Boot Server on a Subnet With a CD Image

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

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

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

Installing the System From the Network With a CD Image

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

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

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 CD 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.


Note - Starting with the Oracle Solaris 10 9/10 release, only a DVD is provided. Oracle Solaris Software CDs are no longer provided.

See Installing the System From the Network With a DVD Image.


To Create a Boot Server on a Subnet With a CD 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 include a local CD-ROM drive or have access to the remote current Oracle Solaris release disc images, which are normally on the install server. If you use a naming service, the system should be in the 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 Software - 1 CD image 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 Software - 1 CD 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

Example 6-2 Creating a Boot Server on a Subnet With CD Media

The following example illustrates how to create a boot server on a subnet. These commands copy the boot software from the Oracle Solaris Software for SPARC Platforms - 1 CD image to /export/install/boot on the system's local disk.

# mount -F nfs -o ro crystal:/export/install/boot /mnt 
# mkdir -p /export/install/boot 
# cd /mnt/Solaris_10/Tools
# ./setup_install_server -b /export/install/boot
# cd /
# umount /mnt

In this example, the disc is inserted and automatically mounted before the command. After the command, the disc is removed.

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 CD Image.

See Also

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