Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
eeepc [2009/05/21 13:30] mdc |
eeepc [2010/02/14 00:24] (current) stefanha |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Howto use gPXE with the Asus Eeepc 900/1000H and a USB key ====== | ====== Howto use gPXE with the Asus Eeepc 900/1000H and a USB key ====== | ||
- | Note: this howto is made in mind that you don't have access to a TFTP server on your LAN, that you are too lazzy to setup one, or that your sysadmins forbids it | + | Note: this howto is made in mind that you don't have access to a TFTP server on your LAN, that you are too lazy to setup one, or that your sysadmins forbids it |
- | - Compile undi.usb:<code> cd gpxe.git/src; make bin/undi.usb </code>Or if you are lazzy download a [[http://zoobab.wikidot.com/local--files/eeepc/undi.usb|binary version here]]. | + | - Compile undi.usb:<code> cd gpxe.git/src; make bin/undi.usb </code>Or if you are lazy download a [[http://zoobab.wikidot.com/local--files/eeepc/undi.usb|binary version here]]. |
- Copy it to a USB key (your key is seen as sdc by linux, change it in function of yours): <code> dd if=bin/undi.usb of=/dev/sdc </code> | - Copy it to a USB key (your key is seen as sdc by linux, change it in function of yours): <code> dd if=bin/undi.usb of=/dev/sdc </code> | ||
- Put the USB key in one slot of the Eeepc | - Put the USB key in one slot of the Eeepc | ||
Line 15: | Line 15: | ||
- While it starts, type Ctrl-B to get a shell and try <code>gpxe> dhcp net0</code>, it should give you an IP address if you have a DHCP server on your network. | - While it starts, type Ctrl-B to get a shell and try <code>gpxe> dhcp net0</code>, it should give you an IP address if you have a DHCP server on your network. | ||
- Then try to load a linux kernel (it can takes up to 2 minutes, be patient)<code>gpxe> kernel http://etherboot.org/gtest/gtest.gpxe</code> and then type <code>gpxe> boot</code> | - Then try to load a linux kernel (it can takes up to 2 minutes, be patient)<code>gpxe> kernel http://etherboot.org/gtest/gtest.gpxe</code> and then type <code>gpxe> boot</code> | ||
- | - If you find booting from the internet slow, you could setup an HTTP server somewhere on your LAN with python (this simple webserver serves files in its current directory over port 8000):<code>python -c 'from SimpleHTTPServer import test; test()' | + | - If you find booting from the internet slow, you could setup an HTTP server somewhere on your LAN with python (this simple webserver serves files in its current directory over port 8000):<code>python -m SimpleHTTPServer |
Serving HTTP on 0.0.0.0 port 8000 ... | Serving HTTP on 0.0.0.0 port 8000 ... | ||
</code> | </code> |