Installing Debian 6.0 (squeeze) on a ThinkPad X220

From ThinkWiki
Revision as of 17:51, 12 July 2011 by Jdthood (Talk | contribs) (←Created page with 'WORK IN PROGRESS I have just started installing Debian 6.0 (squeeze) on a ThinkPad X200. I am doing this on my home network so I opted to do a pure netw...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

WORK IN PROGRESS

I have just started installing Debian 6.0 (squeeze) on a ThinkPad X200.

I am doing this on my home network so I opted to do a pure network installation.

$ cat /etc/dhcp/dhcpd.conf
ddns-update-style none;
option domain-name "jdthood.nl";
option domain-name-servers 172.19.3.1;
option routers 172.19.3.1;
option subnet-mask 255.255.0.0;
default-lease-time 600;
max-lease-time 7200;
allow booting;
allow bootp;

subnet 172.19.3.0 netmask 255.255.255.0 {
  range 172.19.3.220 172.19.3.229;
}

group {
  next-server 172.19.3.7;
  host trawsfynydd {
    hardware ethernet f0:de:f1:6b:22:bf;
    fixed-address 172.19.3.220;
    filename "/pxelinux.0";
  }
}