JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris 10 1/13 Installation Guide: Network-Based Installations     Oracle Solaris 10 1/13 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: How 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

How 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: How to Install the Client Over the Network (CDs)

x86: How 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 Appendixes

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.


If you are using DHCP to set installation parameters or your install server and client are on the same subnet, you do not need a boot server. Proceed to Adding Systems to Be Installed From the Network With a CD Image.

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

Before You Begin

If your install server and your client are not on the same subnet and you are not using DHCP, you must create separate boot servers for each subnet. You could create an install server for each subnet; however, install servers require more disk space.

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.

  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.


  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

    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


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

Next Steps

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 theinstall_scripts(1M) man page.