Setting Up ESATA Disks
- use dmesg to work out which disks they are
- format them if necessary:
fdisk /dev/sdc p n make it a ID 83 (Linux) w
- create the RAID0 device
mdadm -Cv /dev/md2 -l0 -n2 /dev/sdc1 /dev/sdd1
- Format it
mkfs.ext3 /dev/md2
- mount it
mount /dev/md2 /mnt/glast_agn
- umount /mnt/glast_agn
- mdadm --stop /dev/md2