====== Installation Boot server PXE ====== {{tag>réseau PXE "boot server"}} Nous installons les paquets nécessaires sudo aptitude install syslinux-utils syslinux tftpd-hpa Nous vérifions que le contenu du fichier /etc/default/tftpd-hpa correspond bien à ceci # /etc/default/tftpd-hpa TFTP_USERNAME="tftp" TFTP_DIRECTORY="/srv/tftp" TFTP_ADDRESS="0.0.0.0:69" TFTP_OPTIONS="--secure" Nous créons le répertoire /etc/tftp et /etc/tftp/debian sudo mkdir -p /srv/tftp/debian && cd /srv/tftp Nous téléchargeons le paquet netboot, et le décompressons sudo wget http://ftp.debian.org/debian/dists/bullseye/main/installer-amd64/current/images/netboot/netboot.tar.gz && sudo tar xzf netboot.tar.gz -C debian Nous renommons le répertoire "debian-installer" en "bullseye" sudo mv -v debian/debian-installer debian/bullseye ===== Liens ===== * [[https://www.howtoforge.com/tutorial/install-debian-9-stretch-via-pxe-network-boot-server/|install debian 9 stretch via pxe network boot server]] * [[https://www.nextinpact.com/news/107141-preseed-debian-automatisez-simplement-installation.htm|preseed debian automatisez simplement installation]] * [[https://wiki.debian.org/PXEBootInstall|installing Debian using network booting]] * [[https://www.it-connect.fr/installation-et-configuration-dun-serveur-pxe/|installation et configuration d'un serveur pxe]]