I've been testing out the
Simple instructions on how to configure a
Don't forget to disable any other DHCP servers you may have on the
apt-getinstall tftpd-hpa
apt-getinstall dhcp3-server
mkdir -p /var/www/ubuntu -606-server-i386/
mount -o loop /dl/ubuntu -6.06-server-i386.iso /var/www/ubuntu -606-server-i386/
tar xzvf /dl/netboot.tar.gz -C /var/lib/tftpboot
Update the following files to suite your setup:
/etc/default/tftpd-hpaYou'll get a few prompts, but nothing annoying. I'll have a deeper look into the preseed file format some other day. I'm sure a hands-off
RUN_DAEMON="yes"
OPTIONS="-l -s /var/lib/tftpboot"
/etc/dhcp3/dhcpd.conf
ddns-update-style none;
option domain-name "hifichoice.com";
option domain-name-servers 83.146.21.6, 212.158.248.5;
ping-check = 1;
default-lease-time 600;
max-lease-time 7200;
log-facility local7;
subnet 192.168.95.0 netmask 255.255.255.0 {
range 192.168.95.100 192.168.95.150;
option routers 192.168.95.1;
filename="pxelinux.0";
next-server 192.168.95.20;
}
/var/lib/tftpboot/pxelinux.cfg/default
DISPLAYubuntu -installer/i386/boot-screens/boot.txt
PROMPT 1
TIMEOUT 0
labelinstall -simple
kernelubuntu -installer/i386/linux
append initrd=ubuntu -installer/i386/initrd.gz \ -
ramdisk_size=14984 root=/dev/rd/0 rw preseed/locale=en_US \ -
kbd-chooser/method=us netcfg/wireless_wep= netcfg/choose_interface=eth0 \ -
netcfg/get_hostname=elmer preseed/url=http://192.168.95.20/preseed-606-auto.cfg --
LABELinstall
kernelubuntu -installer/i386/linux
append vga=normal initrd=ubuntu -installer/i386/initrd.gz ramdisk_size=14332 \ -
root=/dev/rd/0 rw --
My /var/www/preseed-606-auto.cfg
The
My Tasks/Projects
Projects I Involved
New Task
My Jottings & Pics
Events I Attend
My Opportunities






Hampus,
ubuntu -606-server-i386/pool/main/b/binutils/ ?
I tried this, and the installer fails while trying to fetch a "binutils" file which was updated shortly after dapper was finally released (bug 49269)
Did you find this bug? would you care to list the contents of your directory: /var/www/
I did this without specifying a preseed file (and another time with a Kubuntu preseed) and had no trouble with either.
Thanks for the config examples, they are helpful. One question- how did you boot Elmer? How did Elmer find the installation server? Do you have a special NIC, or a boot disk on Elmer?
thx!
"Elmer" is a VIA C3 machine with a PXE capable ethernet controller. When the machine boots up I press F12 (I think) to get to the boot device menu, selectNetwork boot and the PXE functionality picks up the boot info via DHCP. There are two extra lines in the DHCPD, one to point to a boot server (which has tftp installed) and the other points to the file to request via tftp.
filename="pxelinux.0";
next-server 192.168.95.20;
Jorge,
I had no problems with the binutils package. Not sure if that bug exists in the server release. I haven't tried with the desktop cd.
It took me ages to get this to work! No fault of yours I hasten to add.
from another, the client laptop had no cd floppy or bootable usb.
network at all.
I was trying to boot one laptop
I had them connected directly to each other via ethernet but the client could not see the
Eventually I went though my router and it worked fine!
I think the problem was:
a) I'm a complete noob
b) You're meant to go through a router and I didn't know that ('cos I'm a noob).
c) My ethernet cables are "straight through" and need to be "crossover", thats just a wild guess btw.
I also didn't need a preseed file, it worked as soon as I went via my router.
Anyway, thanks for the info
Tony Z
p.s. A little knowledge is a dangerous thing!!
I'll be posting an updated and more in depth post about 6.10 as soon as the final version is out.
from a USB or card-reader device as well.
Currently got a 1013 daily build running in test.
Possibly a post about installing
I followed your exact examples, changing only my IP addresses and everything worked fine. I did thisnetwork install on Ubunty 6.10 with no problems. Not sure exactly what is going on internally, but it got the job done! THANKS!
install ! It's not consistent.
PS - your instructions worked better than about 4 or 5 other blogs I saw claiming to do a PXE boot. For some reason, everyone else has different instructions on how to PXE
Well done! I too was having issues with the myriad of instructions regarding PXE booting andUbuntu Edgy.
Ubuntu does not have the full kicstart command set -- 'part swap --recommended', returned with a 'getopt --recommended unknown'.
I spent a day getting the Kickstart method working-- but I wasn't satisfied as
That was it, so I spend half the day trying to get it 'right'. Was just about to give up (for today) and saw your article (well, read it again).
The big issue for me-- people were using preseed for locale in the append string, and that kept the local/language/keyboard showing up-- ug.
Looked at your append-- saw it didn't have a preseed in front... and well, I'm happily installing away.
Thanks again!