Post Reply 
 
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
EFI PXE bootstrap and NBI image support
2016-10-23, 03:17
Post: #8
RE: EFI PXE bootstrap and NBI image support
This is my sort of working configurations (both - legacy and efi):

NFS:
Code:
:clonezilla1
kernel ${boot-url}/clonezilla64/live/vmlinuz initrd=initrd.img vga=791 boot=live union=overlay components net.ifnames=0 noprompt edd=on nomodeset nosplash username=user config locales=pl_PL.UTF-8 keyboard-layouts=pl timezone=Europe/Warsaw i915.blacklist=yes radeonhd.blacklist=yes nouveau.blacklist=yes vmwgfx.blacklist=yes live-netdev="eth0" netboot=nfs nfsroot=${next-server}:/data/tftpboot/clonezilla64 ocs_prerun="" ocs_live_run="" ocs_live_batch="no"
initrd ${boot-url}/clonezilla64/live/initrd.img
imgstat
boot || read void

TFTP:
Code:
:clonezilla2
kernel ${boot-url}/clonezilla64/live/vmlinuz initrd=initrd.img vga=791 boot=live union=overlay components net.ifnames=0 noprompt edd=on nomodeset nosplash username=user config locales=pl_PL.UTF-8 keyboard-layouts=pl timezone=Europe/Warsaw i915.blacklist=yes radeonhd.blacklist=yes nouveau.blacklist=yes vmwgfx.blacklist=yes live-netdev="eth0" fetch=tftp://${next-server}/clonezilla64/live/filesystem.squashfs ocs_prerun="" ocs_live_run="" ocs_live_batch="no"
initrd ${boot-url}/clonezilla64/live/initrd.img
imgstat
boot || read void

HTTP:
Code:
:clonezilla3
imgselect ${boot-url}/clonezilla64/live/vmlinuz
imgfetch ${boot-url}/clonezilla64/live/initrd.img
imgargs vmlinuz initrd=initrd.img vga=791 boot=live union=overlay components net.ifnames=0 noprompt edd=on nomodeset nosplash username=user config locales=pl_PL.UTF-8 keyboard-layouts=pl timezone=Europe/Warsaw i915.blacklist=yes radeonhd.blacklist=yes nouveau.blacklist=yes vmwgfx.blacklist=yes live-netdev="eth0" fetch=${boot-url}/clonezilla64/live/filesystem.squashfs  ocs_prerun="" ocs_live_run="" ocs_live_batch="no"
imgstat
boot || read void

FTP:
Code:
:clonezilla4
imgselect ${boot-url}/clonezilla64/live/vmlinuz
imgfetch ${boot-url}/clonezilla64/live/initrd.img
imgargs vmlinuz initrd=initrd.img vga=791 boot=live union=overlay components net.ifnames=0 noprompt edd=on nomodeset nosplash username=user config locales=pl_PL.UTF-8 keyboard-layouts=pl timezone=Europe/Warsaw i915.blacklist=yes radeonhd.blacklist=yes nouveau.blacklist=yes vmwgfx.blacklist=yes live-netdev="eth0" fetch=ftp://${next-server}//tftpboot/clonezilla64/live/filesystem.squashfs  ocs_prerun="" ocs_live_run="" ocs_live_batch="no"
imgstat
boot || read void

${boot-url} = http://ip/tftproot

NFS is the fastest solution.

pzdr
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: EFI PXE bootstrap and NBI image support - maggreg - 2016-10-23 03:17



User(s) browsing this thread: 1 Guest(s)