Install dm-raid (synaptic I used), then mount the partitions of the raid.
Use fdisk -l to find the names of the partitioned drives.
eg, for me the command is:
sudo mount /dev/dm-1 /media/ntfs
This mounts the partition (my windows C drive) to /media/ntfs
ntfs is just a name I gave to place I wanted to put the mounted partition.
You might need to do mkdir /media/ntfs first.. or whatever you want to call it
I made a little script to mount my 3 raid partitions for me:
#!/bin/bash
sudo mount /dev/dm-1 /media/ntfs
sudo mount /dev/dm-2 /media/ntfs2
sudo mount /dev/dm-3 /media/ntfs3
Mad it executable and I can run it when I log on to mount my 3 raid partitions.
Been experimenting with adding this to the autostart but the need for sudo messes it up.
This is on a Asus P5W DH using the Intel Storage controller.
I can read write to the RAID from within Ubuntu and Vista, haven't killed it yet
