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:

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:

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