JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Sun Server X2-8 Product Documentation     Sun Server X2-8 (formerly Sun Fire X4800 M2) Documentation Library
search filter icon
search icon

Document Information

Using This Documentation

Hardware Installation

Operating System Installation

Linux

Linux Installation Task Map

Oracle Hardware Installation Assistant (OHIA)

Task Overview

Obtaining OHIA

Preparing for OS Installation

How to Erase Your Boot Hard Disk

Creating a Virtual Disk

How to Create a Virtual Disk

About Using the x2APIC Option

Selecting a Media Delivery Method

Local Installation by Accessing the Console Using the Serial or Video Port

How to Configure the Serial Port

Remote Installation by Accessing the Console Using Oracle ILOM

How to Access the Server Console Using Oracle ILOM Web Interface

How to Access the Server Console Using the Oracle ILOM CLI Interface

Installing Oracle Linux

Installing Oracle Linux From Distribution Media

How to Download Oracle Linux Media

How to Install Oracle Linux From Distribution Media

Updating Oracle Linux

How to Update the Oracle Linux Operating System

Installing Red Hat Enterprise Linux

Installing RHEL From Distribution Media

How to Download RHEL Media Kits

How to Install RHEL From Distribution Media

Updating RHEL

How to Update the RHEL Operating System

How to Update the RHEL Drivers

Installing SUSE Linux Enterprise Server

Installing SLES From Distribution Media

How to Download SLES Media Kits

How to Install SLES From Distribution Media

Updating SLES

How to Update the SLES Operating System

How to Update the SLES Drivers

Configuring a Linux Server to Support PXE Installation

Overview of PXE

How to Install and Configure a DHCP Server for PXE

How to Install Portmap on Your PXE Server

How to Configure the TFTP Service on Your PXE Server

How to Configure PXELINUX on Your PXE Server

How to Configure the NFS Service on Your PXE Server

Disabling the Firewall

How to Disable the Firewall for SUSE Linux

How to Disable the Firewall for Oracle Linux or Red Hat Enterprise Linux

How to Create a PXE Installation Image for Oracle Linux

How to Create a PXE Installation Image for RHEL

How to Create a PXE Installation Image for SLES

How to Create a PXE Installation Image for Oracle VM

How to Install Linux From a PXE Server

Identifying Logical and Physical Network Interface Names for Linux OS Configuration

How to Identify Installed Network Ports

How to Identify Logical and Physical Network Interface Names While Installing Oracle Linux or RHEL

How to Identify Logical and Physical Network Interface Names While Installing SLES

Administration, Diagnostics, and Service

Index

How to Configure the NFS Service on Your PXE Server

  1. Determine whether the NFS service package is already installed on the server.
    # rpm -qa | grep nfs-utils
  2. If the NFS service package is not listed, install it from the Linux distribution media (you can use grep to find the nfs-utils rpm for Oracle Linux or RHEL, and nfs-kernel-server rpm for SLES).
  3. Add the following line to the /etc/exports file and save it:

    /home/pxeboot *(no_root_squash,no_subtree_check,insecure)

  4. Start the NFS service:
    # service nfs start
  5. Configure the server to always start the NFS service:
    # chkconfig nfs on
    # chkconfig nfslock on

    Note - If you are using a DNS server, verify that DNS entries exist for the range of addresses defined in the PXE subnet dynamic-bootp entry in the dhcpd.conf file. If you are not using a DNS server, edit the /etc/hosts file to add the range of host addresses found in the PXE subnet dynamic-bootp entry in the dhcpd.conf file.