Installing Debian 6.0 (squeeze) on a ThinkPad X220
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.
- sudo aptitude install tftpd-hpa
- cd /tmp
- wget http://http.us.debian.org/debian/dists/squeeze/main/installer-amd64/current/images/netboot/netboot.tar.gz
- cd /var/lib/tftpboot/
- sudo tar zxf /tmp/netboot.tar.gz
- sudo aptitude install isc-dhcp-server
- sudo vi /etc/dhcp/dhcpd.conf
$ 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";
}
}