Please note that this is a part of my page on Running Linux on Dell Dimension 8400.
Linux on Dell: disk setup and initial install
Booting an install cd
This turned out to be the first problem:
- I got an Ubuntu Warty install-cd off the Linux Format 62, but that didn't even recognise the dvd-drive, so I got me nowhere
- Instead I went for the Gentoo 2004.3 universal live cd. See the full list of mirrors.
Disk-driver
The next issue was accessing the SATA-disk. I was hoping to use dmraid to use the Intel RAID Bios, but the gcc-installation on the gentoo-cd didn't work...
My resolution:
- Disable RAID (press Ctrl-I on the disk-summary-boot-screen)
- Set the disk controller in RAID/ATA-mode (Press F2 during boot to get the bios-setup)
- Install
- Compile a 2.6.10-kernel including drivers for both AHCI and ATA_PIIX.
- Set the disk controller back to RAID/AHCI
Partitioning
Dual boot
Some more tips
Example grub setup
I spent too much time getting the kernel to boot properly, but at the end, this is the grub-setup I use:
# For booting GNU/Linux
title Linux
root (hd0,1)
kernel /vmlinux root=/dev/sda6 udev nodevfs panic=5 video=vesafb:ywrap,mtrr vga=0x31B
(Do not copy this without understanding what it means, consult the documentation for grub manual and the bootparam(7) manpage.
rolfn@pvv.org