Hola, por lo que entiendo, tienes el Raid 0 con los dos discos de 500Gb, Ubuntu esta instalado en otro disco y lo que querés es poder ver el RAID 0 donde están tus archivos no?
La verdad, nunca hice esto, pero voy a tratar de ayudarte (esa es la idea del foro no?
). Por lo que estuve viendo, lo que necesitas es buscar como se monta un fakeraid (asi llaman al raid que no es por hardware, que es el que estas haciendo vos con la BIOS segun lo que entiendo, y que tampoco es por software). Para esto se utiliza el paquete
dmraid. Nose si por defecto viene instalado en ubuntu, sino:
sudo apt-get install dmraid
En este thread de linuxquestions, una persona lo hace con RHEL4:
http://www.linuxquestions.org/questions/linux-hardware-18/mount-existing-ntfs-sata-raid-0-on-rhel4-via-fake-raid-580872/
En ese mismo thread, hay uno que postea los pasos que siguió para montar su RAID (aunque en este caso es un RAID 1):
root@lazic:/home/nikola# fdisk -l
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x8a5be982
Device Boot Start End Blocks Id System
/dev/sda1 1 13 102400 7 HPFS/NTFS
Partition 1 does not end on cylinder boundary.
/dev/sda2 * 13 58252 467798016 7 HPFS/NTFS
/dev/sda3 58253 60800 20466810 5 Extended
/dev/sda5 58253 60278 16273813+ 83 Linux
/dev/sda6 60279 60800 4192933+ 82 Linux swap / Solaris
Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x8a5be982
Device Boot Start End Blocks Id System
/dev/sdb1 1 13 102400 7 HPFS/NTFS
Partition 1 does not end on cylinder boundary.
/dev/sdb2 * 13 58252 467798016 7 HPFS/NTFS
/dev/sdb3 58253 60800 20466810 5 Extended
/dev/sdb5 58253 60278 16273813+ 83 Linux
/dev/sdb6 60279 60800 4192933+ 82 Linux swap / Solaris
root@lazic:/home/nikola# mkdir /mnt/sda2
root@lazic:/home/nikola# mount /dev/sda2 /mnt/sda2
mount: special device /dev/sda2 does not exist
root@lazic:/home/nikola# mount /dev/sdb2 /mnt/sda2
mount: special device /dev/sdb2 does not exist
root@lazic:/home/nikola# ls -l /dev/mapper
total 0
crw-rw---- 1 root root 10, 61 2009-11-11 14:24 control
brw-rw---- 1 root disk 252, 0 2009-11-11 14:24 isw_digifecdde_Volume0
brw-rw---- 1 root disk 252, 1 2009-11-11 14:24 isw_digifecdde_Volume01
brw-rw---- 1 root disk 252, 3 2009-11-11 14:24 isw_digifecdde_Volume02
brw-rw---- 1 root disk 252, 4 2009-11-11 19:24 isw_digifecdde_Volume05
brw-rw---- 1 root disk 252, 5 2009-11-11 14:24 isw_digifecdde_Volume06
root@lazic:/home/nikola# dmraid -ay -v
RAID set "isw_digifecdde_Volume0" already active
INFO: Activating GROUP raid set "isw_digifecdde"
RAID set "isw_digifecdde_Volume01" already active
INFO: Activating partition raid set "isw_digifecdde_Volume01"
RAID set "isw_digifecdde_Volume02" already active
INFO: Activating partition raid set "isw_digifecdde_Volume02"
RAID set "isw_digifecdde_Volume05" already active
INFO: Activating partition raid set "isw_digifecdde_Volume05"
RAID set "isw_digifecdde_Volume06" already active
INFO: Activating partition raid set "isw_digifecdde_Volume06"
root@lazic:/home/nikola# mount -t ntfs-3g /dev/mapper/isw_digifecdde_Volume0 /mnt/sda2
NTFS signature is missing.
Failed to mount '/dev/mapper/isw_digifecdde_Volume0': Invalid argument
The device '/dev/mapper/isw_digifecdde_Volume0' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
root@lazic:/home/nikola# mount -t ntfs-3g /dev/mapper/isw_digifecdde_Volume01 /mnt/sda2root@lazic:/home/nikola# mkdir /mnt/sda3
root@lazic:/home/nikola# mount -t ntfs-3g /dev/mapper/isw_digifecdde_Volume02 /mnt/sda3
root@lazic:/home/nikola#
Como te dije antes, no lo hice nunca (y no tengo forma de armar un RAID0 como para probar) asi que no se si funciona, pero en una de esas algo te sirve
Saludos!