Created
July 7, 2016 11:17
-
-
Save robinsmidsrod/3c6805f61526e7edcd1d522bd07bb35a to your computer and use it in GitHub Desktop.
Booting Elive 2.6.18 beta using iPXE and NFS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:elive | |
echo Starting Elive ${elive-version} for ${initiator-iqn} | |
# Get the ISO from http://www.elivecd.org/download/beta/ | |
set base-url elive-${elive-version} | |
set kernel-args \ | |
boot=live swap=off \ | |
ip=dhcp root=/dev/nfs nfsroot=${nfs-server}:${nfs-root}${base-url} \ | |
config username=eliveuser | |
kernel ${base-url}/live/vmlinuz1 ${kernel-args} | |
initrd ${base-url}/live/initrd1.img | |
boot || goto failed | |
goto start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment