Installing Debian Sid (October 2008) on a ThinkPad X200

From ThinkWiki
Revision as of 03:28, 26 October 2008 by Rdemaria (Talk | contribs) (New page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Creating installation device

The X200 has no cd/dvd but can boot from USB. On the X200 BIOS settings, the USB disk boot option needed to be raised to be used first. Using F1 at boot gives access to the BIOS.

I created an USB bootable iso from another linux installation. I had an usb stick with a FAT32 partition on /dev/sdc1. I dowloaded the boot and iso file and installed the image using:

 wget http://people.debian.org/~joeyh/d-i/images/daily/hd-media/boot.img.gz
 wget http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/i386/iso-cd/debian-testing-i386-netinst.iso
 zcat boot.img.gz >/dev/sdc1
 mkdir /mnt/sdc1
 mount /dev/sdc1 /mnt/sdc1
 cp debian-testing-i386-netinst.iso /mnt/sdc1

The boot stick will use the network to install the package but a more complete ISO image can be dowloaded.

The wifi will not work (see Installing_Debian_on_an_X200) but the Ethernet card will. In theory it should be possible build custom Debian Live USB stick, using the latest package and install from there, I didn't manage so far.

TO BE CONTINUED