So the UPS man stops by today and drops off a couple boxes. In one I have some boring stuff that I bought for my part-time job; nothing that I get to tinker with so let's just toss it into a corner for a couple days and forget about that for now.
In the other box are 4, yes 4, 1TB drives. ...sorry about that, I had to wipe my chin again.
Anyway, I decided the other day to setup a software RAID set on an old pc for backups. I plugged in the drives and booted up the box. one quick command later
Code:
dmesg | grep TB
and I find out that the drives are /dev/sd{b,c,d,e} Well, now we are in business.

use fdisk to create one big partition on each one and set the partition type to "fd" This took about 2 minutes per drive, the first ones took longer because I had to print the help menu to remember the next options. Once that was done it was time to create the RAID set.
Code:
/sbin/mdadm --create --verbose /dev/md0 --level=raid6 \
--raid-devices=4 /dev/sdb1 /dev/sdc1 /dev/sdd1 /dev/sde1
Now I have a new device/dev/md0. I created a directory and mounted it, added it to fstab so it will mount on reboot and I am done. 2.75TB of free space. All told it took me more time to get the drives in the case and run the wiring than it did to setup the RAID set and get it working.
I think back to the days of recompiling a kernel just to add a new piece of hardware, or banging my head against the desk trying to get XX software configured correctly. I think I might enjoy the direction Linux is headed.