Difference between revisions of "Application note - UEFI PXE boot to Linux Mint"

From fit-PC wiki
Jump to: navigation, search
(Created page with "== Overview == In this tutorial you will be able to create PXE server on your PC that allows you to boot multiple distributions directly from ISO image using Ethernet connecti...")   (change visibility)
(No difference)

Revision as of 10:32, 23 January 2019

Overview

In this tutorial you will be able to create PXE server on your PC that allows you to boot multiple distributions directly from ISO image using Ethernet connection only

TFTP server

$ sudo apt install tftpd-hpa
  • Edit configuration file: /etc/default/tftpd-hpa
TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/var/lib/tftpboot"
TFTP_ADDRESS=":69"
TFTP_OPTIONS="--secure --verbose"