Difference between revisions of "IPXE"

From Teknologisk videncenter
Jump to: navigation, search
m
m (added Category:PXE using HotCat)
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
 
==PXE Boot from USB stick==
 
==PXE Boot from USB stick==
  
===Ubuntu 12.04.3 LTS===
+
==Ubuntu 12.04.3 LTS==
 
You need the following packages installed to build iPXE
 
You need the following packages installed to build iPXE
 
<source lang=cli>
 
<source lang=cli>
Line 11: Line 11:
 
apt-get install binutils
 
apt-get install binutils
 
apt-get install syslinux
 
apt-get install syslinux
 
+
apt-get install git
 +
</source>
 +
==Downloading and building iPXE==
 +
<source lang=cli>
 +
cd
 +
git clone git://git.ipxe.org/ipxe.git
 +
cd ipxe/src
 +
make
 +
</source>
 
=Links=
 
=Links=
 
*[www.ipxe.org Home page]
 
*[www.ipxe.org Home page]
 
{{Source cli}}
 
{{Source cli}}
 +
 +
[[Category:PXE]]

Latest revision as of 09:21, 15 January 2014

iPXE - Open Source Boot Firmware

Can be used in several ways.

PXE Boot from USB stick

Ubuntu 12.04.3 LTS

You need the following packages installed to build iPXE

apt-get install gcc
apt-get install make
apt-get install perl
apt-get install binutils
apt-get install syslinux
apt-get install git

Downloading and building iPXE

cd
git clone git://git.ipxe.org/ipxe.git
cd ipxe/src
make

Links

  • [www.ipxe.org Home page]