mirror of
https://github.com/linuxboot/linuxboot
synced 2024-11-22 17:01:28 +00:00
009849165f
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
19 lines
484 B
Bash
Executable File
19 lines
484 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo https://wiki.up-community.org/Enable_PXE_boot
|
|
sudo netplan apply
|
|
ip a
|
|
sudo service isc-dhcp-server restart
|
|
sudo systemctl restart tftpd-hpa
|
|
echo Serving IP4 but you can get ip6 via other means
|
|
echo dont forget to get this
|
|
echo http://archive.ubuntu.com/ubuntu/dists/trusty/main/uefi/grub2-amd64/current/grubnetx64.efi.signed
|
|
|
|
exit 0
|
|
mkdir -p /tmp/kea
|
|
sudo kea-dhcp6 -d -d -d -c ~/bin/kea6.conf
|
|
|
|
|
|
echo sudo tar xvf /mnt/hgfs/rminnich/Downloads/netboot.tar.gz
|