tftpboot/README.md

192 lines
11 KiB
Markdown
Raw Permalink Normal View History

# tftpboot
1. [Overview](#overview)
2. [Description](#description)
2016-07-21 16:33:03 +02:00
* [PXE files](#pxe-files)
* [Configuration files](#configuration-files)
* [Preseed](#preseed)
* [Scripts](#scripts)
2016-07-21 16:33:03 +02:00
3. [How to use it](#how-to-use-it)
4. [TODO](#todo)
## Overview
All needed files to set up a PXE server.
## Description
### PXE files
Use some bootloaders files provide by:
2016-07-20 12:02:56 +02:00
* `pxelinux` debian package:
* gpxelinux.0
* pxelinux.0
2016-07-20 12:02:56 +02:00
* `syslinux-common` debian package:
* chain.c32
* ldlinux.c32
* libcom32.c32
* libutil.c32
* menu.c32
* reboot.c32
* vesamenu.c32
2016-07-27 14:45:04 +02:00
To get those files from the packages of your repositories:
``` sh
mkdir -p temp_pxe_files
cd temp_pxe_files
aptitude download pxelinux syslinux-common
ar p pxelinux*.deb data.tar.xz | tar xJ -C . --strip-components=4 ./usr/lib/PXELINUX/{g,}pxelinux.0
ar p syslinux-common*.deb data.tar.xz | tar xJ -C . --strip-components=6 ./usr/lib/syslinux/modules/bios/{chain,ldlinux,libcom32,libutil,menu,reboot,vesamenu}.c32
```
The MD5 checksum can mismatch between the files from this repo and those from Debian's packages.
### Configuration files
Contains the files which defines the PXE menu. The [first one][main menu.cfg] will:
* Call all others menu.cfg from subdirectories (debian/, clonezilla/,…) as an entry.
* Define a timeout (4 seconds).
* Define the default entry (boot on local first disk).
*
#### config/debian/menu.cfg
1. Provide PXE entries for:
* Debian Jessie (Stable) amd64.
* Debian Jessie (Stable) amd64 with additionnals firmwares (see [make_debian_initrd_with_firmware.sh][debian initrd with firmware script] script).
* Debian Jessie (Stable) amd64 with additionnals firmwares and preseed file.
* Debian Jessie (Stable) amd64 for minions with preseed (Mate as default GUI).
* Debian Jessie (Stable) amd64 for minions with preseed (Cinnamon as default GUI).
* Debian Jessie (Stable) amd64 for minions with preseed (Gnome 3 as default GUI).
* Debian Jessie (Stable) i386.
* Debian Jessie (Stable) i386 with Mate as default GUI (for old manipulation computers).
2016-07-29 14:54:09 +02:00
* Debian Stretch (Testing) amd64 with additionnals firmwares (see [make_debian_initrd_with_firmware.sh][debian initrd with firmware script] script).
* Debian Stretch (Testing) amd64 with additionnals firmwares and preseed file.
* Debian Stretch (Testing) amd64 for minions with preseed (Mate as default GUI).
* Debian Stretch (Testing) amd64 for minions with preseed (Cinnamon as default GUI).
* Debian Stretch (Testing) amd64 for minions with preseed (Gnome 3 as default GUI).
* Debian Stretch (Testing) i386.
* Debian Wheezy (oldStable) amd64 with additionnals firmwares (see [make_debian_initrd_with_firmware.sh][debian initrd with firmware script] script).
* Debian Wheezy (oldStable) amd64 with additionnals firmwares and preseed file.
* Debian Wheezy (oldStable) amd64 with additionnals firmwares and preseed file for Cluster node.
* Debian Wheezy (oldStable) amd64 with preseed (Gnome 3 as default GUI).
* Debian Wheezy (oldStable) i386.
* Debian Sid (unstable) amd64.
* Debian Sid (unstable) amd64 with additionnals firmwares (see [make_debian_initrd_with_firmware.sh][debian initrd with firmware script] script).
* Debian Sid (unstable) i386.
2016-09-20 12:13:32 +02:00
2. If you want to use with your own TFTPD server, you need te set your IP server! Replace all occurrences of *129.20.203.27* by the IP of your TFTPD server to be able to load the preseed files!
2016-07-26 14:50:17 +02:00
#### config/ubuntu/menu.cfg
Provide PXE entries for:
* Ubuntu LTS (16.04) amd64.
* Ubuntu LTS (16.04) i386.
* Latest non-LTS Ubuntu (15.10) amd64.
* Latest non-LTS Ubuntu (15.10) i386.
### Preseed
2016-07-26 11:43:26 +02:00
A preseed file can be loaded by the Debian-Installer to answer all questions
Preseeding provides a way to set answers to questions asked by the Debian-Installer, without having to manually enter the answers. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations. More informations on [Debian wiki][preseed informations].
#### Commons configurations
* Localization:
* Language: English
* Country: France
* Locale: en_US.UTF-8 (US English)
* Keyboard: fr-latin9 (French)
* Hardware:
* Network configuration (IP, hostname, domain): automatic (from DHCP server)
* Load additionnals firmwares if availables.
* Account:
* Create a root account.
* root password: SHA-256 hash of the password
* Don't create a normal user (be sure to **allow remote connection for root**! See [late_command info][debian latecommand howto]).
* Timezone
* Timezone: Europe/Paris
* NTP server: ntp.univ-rennes1.fr
* Partitionning
* Use the entire first disk (sda, vda aka virtual hdd or nvme0n1) with LVM.
* Purge all LVM, RAID,… partitions or informations already set on the first disk.
* Partitionning:
| Device | Mount point | Size (Min - Max) | Description |
2016-07-26 11:43:26 +02:00
|-----------|-------------|------------------------|------------------------------------------------------------------------|
| /dev/sda1 | /boot | 200 - 250 Mb | Bootloader (Grub) |
| /dev/sda2 | LVM | 16 Gb - 100% | Physical Volume for LVM |
2016-07-27 14:45:04 +02:00
| lv_root | / | 1 - 2 Gb | Root partition |
2016-07-26 11:43:26 +02:00
| lv_usr | /usr | 4 - 10 Gb | Non-essential system resources (binaries, libraries, documentations,…) |
| lv_var | /var | 4 - 8 Gb | Variable files (databases, cache, log,…) |
| lv_tmp | /tmp | 1 - 2 Gb | Temporary files cleaned between system reboots |
| lv_home | /home | 2 - 3 Gb | User's home directories (saved files, personnal settings,…) |
| lv_srv | /srv | 512 MB - 2 Gb | Specific datas for this system |
| lv_opt | /opt | 512 MB - 4 Gb | Optional application |
| lv_swap | SWAP | 512 Mb - 100% RAM size | Swap sapce |
| lv_free | /mnt/free | free space | See below |
* APT:
* Installation from internet (repository: ftp.fr.debian.org)
* Select **ssh-server** and **standard** in _tasksel_ for installation.
2017-09-06 12:04:23 +02:00
* Add additionnals packages: **tmux**, **zsh** and **tftp-hpa** (to be able to download the [latecommand archive from the PXE server][debian latecommand howto]).
* Bootloader:
* Install Grub on the MBR of the first disk.
* late_command
* Define ZSH as the default shell.
* Permit root login via SSH with it's password.
* Download and extract a _latecommand_ archive from [this repository][debian latecommand description].
2016-07-27 14:45:04 +02:00
* Run the script from this archive.
2016-07-26 11:43:26 +02:00
2017-09-06 12:04:23 +02:00
* Specific to Debian Jessie and older:
* Add a repository for Puppet (http://apt.puppetlabs.com) and the GPG key.
* Add additionnal package: **puppet**
2016-07-26 11:43:26 +02:00
------
2016-07-27 14:45:04 +02:00
**lv_free - /mnt/free**
2017-09-06 12:04:23 +02:00
: The preseed's partitionning need to allocate all the disk space. If it's not define, it will put in the last defined partition all extra free space. So **lv_free** is a temporary LV that you can destroy and use the space to resize any other LV.
#### Specific configurations
* You can choose a desktop environment:
* Debian Stable (aka Jessie): Cinnamon, Mate or Gnome3
* Debian oldStable (aka Wheezy): Gnome3
* Partitionning differences for Debian with a desktop environment:
| Device | Mount point | Size (Min - Max) | Description |
|---------|-------------|------------------|-------------------------------------------------------------|
| lv_root | / | 1 - **3** Gb | root partition |
| lv_home | /home | 2 - **10** Gb | User's home directories (saved files, personnal settings,…) |
| lv_srv | NOT PRESENT | NOT PRESENT | |
2016-07-29 14:54:09 +02:00
#### Informations
* You can use the command: `mkpasswd -m sha-512` to generate a SHA-512 hash for a password.
2016-07-21 16:33:03 +02:00
### Scripts
See the [scripts's README.md][scripts readme.md] file for more informations.
2016-07-11 15:57:17 +02:00
## How to use it
* Put the data of this repository on the PXE server:
* Clone the repository with https URL or with SSH to **/var/lib/tftpboot**.
* Download the last archive: `wget https://git.ipr.univ-rennes1.fr/cellinfo/tftpboot/archive/master.tar.gz`
* Install a TFTP server (`tftpd-hpa` package for Debian's based systems or `tftp-server` for Redhat's based systems).
2016-07-27 14:45:04 +02:00
* Start the tftpd's service:
* `sudo service tftpd-hpa start`
* `sudo systemctl start tftpd-hpa`
* You can test if the TFTP server provide the files with a TFTP client (`tftp-hpa`) by downloading a file with the command: `tftp $IP.SRV.TFTP -c get README.md /tmp/README.md_from_tftpd_server`
2016-09-20 12:13:32 +02:00
* Set your IP in some files instead of the default one *129.20.203.27*:
* In configurations files to be able to call Debian's Preseed files or download squashfs filesystem (for Clonezilla, GParted,…): `sudo find config/ -iname "*.cfg" -type f -exec sed -i "s/129.20.203.27/111.222.333.444/g" {} \;`
* In Preseed files, to be able to download the late_command archive from your TFTPD server: `sudo find preseed/ -type f -exec sed -i "s/129.20.203.27/111.222.333.444/g" {} \;`
* In scripts to generate examples configuration files with the right IP address: `sudo find scripts/ -iname "*.sh" -type f -exec sed -i "s/129.20.203.27/111.222.333.444/g" {} \;`
2016-07-27 14:45:04 +02:00
* Run scripts to download needed PXE files (see the [scripts's README.md][scripts readme.md] for more informations):
* Debian: `sudo ./scripts/download_debian.sh`
2016-09-20 12:13:32 +02:00
* Debian's initrd with additionnals firmwares: `sudo ./scripts/make_debian_initrd_with_firmware.sh`
2016-07-27 14:45:04 +02:00
* Ubuntu: `sudo ./scripts/download_ubuntu.sh`
* Diagnostic tools (Memtest86+, GParted Live,…): `sudo ./scripts/download_diag_tools.sh`
* Clonezilla: `sudo ./scripts/download_clonezilla.sh`
* Generate the late_command archive: `cd scripts/ ; sudo tar czvf latecommand.tar.gz latecommand/`
2016-07-21 16:33:03 +02:00
2016-07-11 15:57:17 +02:00
[main menu.cfg]: ./config/menu.cfg
[debian menu.cfg]: ./config/debian/menu.cfg
2016-07-26 11:43:26 +02:00
[preseed informations]: https://wiki.debian.org/DebianInstaller/Preseed
[preseed jessie]: ./preseed/debian/jessie/preseed.cfg "Debian Jessie preseed"
[preseed wheezy]: ./preseed/debian/wheezy/preseed.cfg "Debian Wheezy preseed"
[scripts readme.md]: ./scripts/README.md "scripts's README.md for tftpboot"
[debian initrd with firmware script]: ./scripts/README.md#make_debian_initrd_with_firmwaresh "informations about the Debian's initrd with additionnals firmwares"
2016-07-26 11:43:26 +02:00
[debian latecommand description]: ./scripts/README.md#debian-late_command "informations about the Debian's late_command script"
[debian latecommand howto]: ./scripts/README.md#how-to-use-it "how-to use the Debian's late_command"
[debian latecommand post.sh script]: ./scripts/latecommand/post.sh