VMware

The Ultimate PXE Boot Server in Action!



For business inqueries or consultation send me an email to: info@distrodomain.com

In this video I show you how to install and configure a netboot.xyz PXE server with online and offiline/local assets for all your deployment needs!

######### Commands used #########

######### Installing Docker #########
yum install -y yum-utils

yum-config-manager –add-repo

yum install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

systemctl enable docker

systemctl start docker

######### Install vim #########
dnf install vim

######### Docker Compose #########

services:
netbootxyz:
image: lscr.io/linuxserver/netbootxyz:0.7.0-ls139
container_name: netbootxyz
environment:
– PUID=1000
– PGID=1000
– TZ=America/Toronto
– MENU_VERSION=2.0.75
– PORT_RANGE=30000:30010
– SUBFOLDER=/
volumes:
– ./config:/config
– ./assets:/assets
ports:
– 3000:3000
– 69:69/udp
– 8080:80
restart: unless-stopped

######### Start the container #########
docker compose up -d

For business inqueries or consultation send me an email to: info@distrodomain.com

0:00 – installing docker
1:08 – netbootxyz docker compose
3:50 – netbootxyz web interface
4:39 – DHCP configuration
6:56 – booting from pxe server
8:29 – pxe booting to rocky linux
11:07 – pxe booting to debain
11:40 – booting locally
13:26 – pxe booting debian 12 live cd
14:24 – pxe booting gparted utility

#netbootxyz #docker #pxe #rockylinux #linux #opensource

[ad_2]

source

Related Articles

12 Comments

  1. Great video. I have setup Ubuntu and Docker, then followed the directions but I don’t see a TFTP server running like I see on your web interface. I have installed packages for tftp, but no go. Any thoughts or suggestions?

  2. Tank you for sharing this great video. I have e few questions related to this, is it possible to install Custom iso files and won't be any problems with small RAM space (ex. 4GB)? And the last question is is it possible to automate the installation of the iso file(configuring the network, setting up the user and password and so on…)?

  3. Couldn’t you also have the dhcp server in a docker container as well? I don’t have a windows license or the desire to go to all the trouble of configuring Active Directory services for my homelab.

  4. That's great and all but I have a single ISO file that I want to boot from the network. It's Hiren's Boot Disk PE V1.0.1.
    I understand how to upload it to the Assets folder but how do I get it to show up in my boot menu? It get super confusing when you try and do it this way.

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button