How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "clink15/pxe"
config.vm.box_version = "2"
end
vagrant init clink15/pxe \
--box-version 2
vagrant up
This version was created about 9 years ago.
Hard drive is now 50 gigs. PXE Booting client.
Uses the Intel PXE Boot menu. Boots from hard drive first, then network.+
To boot, it might be necessary to use the following line to change the bootnic priority:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nicbootprio2", "1"]
end