tftpboot/README.md

57 lines
1.6 KiB
Markdown
Raw 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 servers.
## 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
* menu.c32
* reboot.c32
* vesamenu.c32
### Configuration files
### Preseed
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
2016-07-21 16:33:03 +02:00
* 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).
* 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-07-11 15:57:17 +02:00
## TODO
* Add a tiny preseed file that could be load for a manual install.
[scripts readme.md]: https://git.ipr.univ-rennes1.fr/cellinfo/tftpboot/src/master/scripts "scripts's README.md for tftpboot"