gzip -dc linux-2.6.3.tar.gz | tar xvf -
bzip2 -d patch-2.6.4-rc2.bz2
patch -p1 < patch-2.6.4-rc2
make menuconfig. This is where the
procedure becomes hardware-specific. You'll need to play around with the configuration
a bit before you get enough of your hardware working, but the defaults are a good
place to start. Defaults, that is, with a couple necessary changes to enabled
support for your 3114 chipset....
make clean bzImage modules modules_install
mv arch/i386/boot/bzImage /boot/bzImage-2.6.4-rc2
mv System.map /boot/System.map-2.6.4-rc2
rm /boot/System.map ; ln -s /boot/System.map-2.6.4-rc2 /boot/System.map
title 2.6.4rc2
root (hd0,0)
kernel /boot/bzImage-2.6.4-rc2 ro nousb
dmesg | more to see if there is now mention
of sata and disk(s) named anything between /dev/sda and /dev/sdd. If so, cool!
You got 'em!
fdisk /dev/sda
raiddev /dev/md0
raid-level 0
nr-raid-disks 2
persistent-superblock 1
chunk-size 4
device /dev/sda1
raid-disk 0
device /dev/sdb1
raid-disk 1
mkraid /dev/md0 to create the volume.
mkfs.ext3 /dev/md0 to format the volume.
mkdir /myHugeVolume and mount /dev/md0 /myHugeVolume
/dev/md0 /myHugeVolume ext3 defaults 0 0