Skip to end of metadata
Go to start of metadata

To use PXE Network Boot, you need a working DHCP server, TFTP server, and NFS server. (Read more in Prerequisites for Using PXE Network Boot).

NFS server is used to keep the read-only image of PXE boot file system. To install NFS server on the Linux distribution that supports yum, such as Fedora, CentOS, and RedHat, run the following command:

yum -y install nfs-utils


 
Other Linux distributions have their own methods of software installation. For example, on distributions that support aptitiude, such as Debian and Ubuntu, NFS server can be installed with the command

apt-get install nfs-kernel-server

After the installation, you will have to create NFS share. NFS share is just a directory that can be mounted from remote clients. It is recommended that NFS share directory is not used for any other purposes. Create the directory to be shared over NFS with the command

mkdir /nfsroot

 
After creating the directory, open the file /etc/exports in your favorite text editor.

This file contains a list of NFS shares, IP addresses they can be mounted from, type of access (read-only or read-write), and other sharing options. Let's assume that your IP subnet with the servers for Bare-Metal Restore is 192.168.5.0/24. Add to /etc/exports the following line:

/nfsroot 192.168.5.0/24(ro,no_root_squash,no_subtree_check)


 
Save the file and run the following command:

exportfs -r

Then you can start NFS service by executing the following command:

/etc/init.d/nfs start

To make sure your NFS share is visible to the client, run the following command on NFS server:

showmount -e

The command should return something like this:

Export list for pxeserver: /nfsroot 192.168.5.0/24

Note
NFS service depends on the portmap service and usually will not work if portmap is not running. But this dependency is not always hardcoded into the startup script, so sometimes the script will try to start NFS service without trying to find out if portmap is already started and start it if it is not. In such case NFS will fail to start. So if for any reason NFS service fails to start, try to start portmap first by executing the command
/etc/init.d/portmap start

Now you can proceed to Installing PXE Network Boot.

Labels:
enterprise_edition enterprise_edition Delete
advanced_edition advanced_edition Delete
pxe_network_boot pxe_network_boot Delete
linux linux Delete
Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.