SliTaz GNU/Linux official and community documentation wiki.
.png
Translations of this page:

This is an old revision of the document!


PXE

The Preboot eXecution Environment (or PXE, pronounced 'pixie') is the process of booting a computer from a network connection. It is comparable to booting a LiveCD from a remote CD drive.

This network boot method requires:

  • a server to store files running DHCP and TFTP (each could be on a separate server);
  • a client with a PXE boot-loader, stored in the BIOS firmware. It maybe disk-less.


PXE Server Set-Up

A PXE server comprises:

  • a DHCP server to accept clients;
  • a DHCP boot-file to configure them;
  • a TFTP server to deliver an OS.

Quick start with the Live CD

The SliTaz LiveCD can be used as a PXE server. To begin the process, launch the Netbox application (from the System Tools menu).

  • From the Static IP tab, click Start.
    • This box will be the DHCP server. It can't use DHCP to get an IP configuration.

Since SliTaz 3.0 the Netbox application is now split into Netbox and Serverbox. If you are running a recent SliTaz version, please read Serverbox application instead of Server tab below

  • From the Server tab, select the INETD sub-tab and ensure the tftpd line is uncommented in /etc/initd.conf. This is the default behaviour. Click Start.
    • This will launch the TFTP server, which will deliver the SliTaz LiveCD across the network.
  • From the Server tab, select the PXE sub-tab.
  • Edit the configuration to add your boot options.
    • This will update the DHCP server configuration automatically.
  • From the Server tab, select the DHCP sub-tab. Check that the configuration aligns with your network. The previous step has added the lines boot_file and siaddr. Click Start.
    • This will launch the the DHCP server. If clients to do not receive an IP address, check this configuration.
  • Ensure the files bzImage and rootfs.gz are stored in the /boot directory of the LiveCD.

Customize your PXE server

  • You can have multiple PXE configurations for the different client groups, see PXElinux wiki.
  • You can store /home on a client local drive only (like tazusb does), example append /etc/fstab with :
    /dev/hda1    /home   ext3    defaults   0  0
  • Since SliTaz 3.0, you can have a hydrid installation on (some) clients. These clients have SliTaz installed with some huge packages like libreoffice. They boot with PXE and most of the system runs in RAM except the huge software linked to the hard disk (could be a network disk too). Example, append to /etc/init.d/local.sh :
    mount -t nfs -o ro bootserver:/slitaz  /media/slitaz
    tazpkg link libre-office /media/slitaz
  • Since SliTaz 3.0, you can stack multiple initramfs in the pxelinux configuration file - An easy way to upgrade SliTaz and keep your customizations, example :
    label slitaz
      kernel /boot/bzImage
      append initrd=/boot/rootfs.gz,/boot/configs/extra-packages.gz,/boot/configs/special-configuration.gz rw root=/dev/null vga=normal autologin
  • Example of a PXE server configuration: The SliTaz web boot server http://mirror.slitaz.org/pxe/ (start with pxelinux.cfg/default)


PXE Client Set-Up

Most recent machines with on-board Ethernet have a PXE-capable BIOS. Look for this feature in BIOS menus and the BIOS boot menu and ensure it is activated. It may require you press a key, such as F12, during the boot process.

If your computer does not support PXE booting, you can use SliTaz as a client instead. Create a bootable CD-ROM or floppy disk with the Boot Floppy/CDROM tool found in the System Tools menu.

In the PXE Network tab click Write floppy. Use this to boot the client computer.

Is your Ethernet card not recognised? See ROM-O-Matic


Web Booting

The SliTaz LiveCD has configuration settings to start your computer via the Internet. This is useful for using a newer version of SliTaz from older media.

You can start the automatic process with the following command at the SliTaz LiveCD boot-splash:

web

That's it!

You can find more information on using an Internet connection to boot your computer at the SliTaz Web Boot home-page.

You will need a DHCP server to get an IP address, netmask, gateway address, as per a normal network connection – a standard home router should be sufficient for this.


PXE boot without DHCP server: Web Boot & Command Line

If you have no device that can function as a DHCP server, you need an IP address with a netmask, gateway address and, optionally, a DNS address.

title Slitaz Web
  kernel /boot/gpxe ip=192.168.0.12/24 gw=192.168.0.1 dns=192.168.0.1 url=http://mirror.slitaz.org/pxe/pxelinux.0

You can modify the URL thus:

title Slitaz Web
  kernel /boot/gpxe ip=192.168.0.12/24 gw=192.168.0.1 dns=192.168.0.1 ip=192.168.0.12/24 gw=192.168.0.1
  dns=192.168.0.1 url=http://mirror.slitaz.org/pxe/pxelinux.0

Note that only the following keywords are recognised:

  • ip=
  • gw=
  • dns=
  • url=
  • nodhcp (useful to avoid a DHCP timeout error)


Advanced Web Booting Configuration

The Web Booting process can be embedded into routers and other devices, as well as being customised.


Embedded Web Boot, with PXE boot PROM (PXE forwarder)

Configure a PXE server with http://download.tuxfamily.org/slitaz/boot/gpxe.pxe as the boot file, a 42Kb second stage loader. This was successfully tested with an OpenWRT router:

# echo "dhcp-boot=gpxe.pxe" >> /tmp/dnsmasq.conf

Launch the tftp server for your lan (say 192.168.0.1/24)

# /jffs/usr/sbin/tftpd 192.168.0.1 /jffs/boot

You can avoid the tftp server installation and use the SliTaz tftp server directly :

# echo "dhcp-boot=gpxe.pxe,mirror.slitaz.org" >> /tmp/dnsmasq.conf


Modifying the Default GPXE Web Boot URL

The URL is stored at offset 519 in 255 bytes max.

  • Show the current URL with:
$ dd bs=1 skip=519 count=255 if=gpxe 2> /dev/null | strings
  • Change the URL with:
$ echo -n "http://myurl.org/myboot" | cat - /dev/zero | dd conv=notrunc bs=1 seek=519 count=255 of=gpxe
  • Change the URL and IP configuration with:
$ echo -n "ip=192.168.0.10/24 gw=192.168.0.1 dns=192.168.0.1 url=http://myurl.org/myboot" | cat - /dev/zero | dd
conv=notrunc bs=1 seek=519 count=255 of=gpxe
  • Remove URL to behave as a normal GPXE with:
$ dd if=/dev/zero conv=notrunc bs=1 seek=519 count=255 of=gpxe


Hack the gpxe.pxe Default Web Boot URL

The URL is stored at offset 5 in 255 bytes max.

Show the current URL with:

$ dd bs=1 skip=5 count=255 if=gpxe.pxe 2> /dev/null | strings

Change the URL with:

$ echo -n "http://myurl.org/myboot" | cat - /dev/zero | dd conv=notrunc bs=1 seek=5 count=255 of=gpxe.pxe

Remove the URL and behave as a normal gpxe.pxe with:

$ dd if=/dev/zero conv=notrunc bs=1 seek=5 count=255 of=gpxe.pxe


Using Redundancy with Web Boot Servers

Comma separated URL lists are supported.

The PXE client will try to load the first URL. If the load fails, it will try the next URL, and so on.

Example with current Slitaz Web boot servers :

$ echo -n "http://mirror.slitaz.org/pxe/pxelinux.0,http://mirror.switch.ch/ftp/mirror/pxe/pxelinux.0,http:
download.tuxfamily.org/slitaz/pxe/pxelinux.0" | cat - /dev/zero | dd conv=notrunc bs=1 seek=519 count=255 of=gpxe

—-

Page Review Section
Quality Good
Review Minor Updates
Priority Medium
Problems add a forum post link
OR add a lab issue tracker link
How to Improve Improve readability
Section in to Client/Server, with Simple/Advanced in each



 
en/guides/pxe.1311370017.txt.gz · Last modified: 2011/07/22 23:26 by bellard