How can I recover a RAID 0 stipped array?

Hi:

I friend of mine shipped me two hard drives that are part of a RAID 0 array. One of them is bad. I was able to image both drives using Ubuntu Rescue Remix, and restore the data on two new hard drives. What would be the procedure to join these two drives as a RAID 0 array and extract the data, considering that I do not have and cannot obtain the original RAID card that created the array.

Thanks in advance

El Perrillo.

If the drive are plugged in

If the drive are plugged in and are /dev/sdb and /dev/sdc, and each have only one partition, then the command would be:

mdadm -A /dev/md0 /dev/sdb1 /dev/sdc1

mkdir mnt
sudo mount /dev/md0 mnt