The devices havent been created so you cant mount anything.
Read here:
http://www.net-forums.net/forums/Mounting_Ntfs_Partions_On_Raid_0_Device-t19791.html
If dmraid fails you can set it up yourself. Make sure you have emerged
device-mapper. How to get the info to change the script below. Do this
at the command line:
To get your controller info:
dmraid -l
This will list your raid array info:
dmraid -a y -f <controller> -t
Now at the command line type with your own info:
echo "0 320172032 striped 2 256 /dev/sda 0 /dev/sdb 0" | dmsetup
create raidarray
This will create your raid array, now to get the partition info:
fdisk -u /dev/mapper/raidarray
Take all the info from your partitions and edit the script. Once you
are happy that it is correct than copy the script to
/etc/init.d/initraid and add it to the default run-level by rc-update
add initraid default. Now this script will automatically create your
devices for you. You could probably add the script to boot instead of
default if you want to mount the partitions automatically.
#!/sbin/runscript
start() {
ebegin "Map raid array"
echo "0 320172032 striped 2 256 /dev/sda 0 /dev/sdb 0" | dmsetup
create raidarray
einfo "Map partitions"
echo "0 102398247 linear /dev/mapper/raidarray 63" | dmsetup create raidarray1
echo "0 217744947 linear /dev/mapper/raidarray 102398373" | dmsetup
create raidarray5
eend $?
}
stop() {
ebegin "Stopping raid array"
eend $?
}
On Tue, 08 Mar 2005 10:24:46 +0100, Markus Nicolussi
<[EMAIL PROTECTED]> wrote:
> Hello!
>
> I use the latest genkernel which i created with
>
> #genkernel --menuconfig --dmraid --gensplash --udev all
>
> in the config i set the CPU type
> and the type of my graphics-card for the fb support
>
> everything seems fine with the initrd,
>
> ----------------------------------------------------
> * determinig root device...
> * Booting ...
> ----------------------------------------------------
>
> but i get an error afterwards
>
> ----------------------------------------------------
> * Checking root filesystem
> Partition /dev/mapper/sil_aeabajbhaicfb7: no such file or directory
> Give root password for maintenance
> ----------------------------------------------------
>
> i type my pw and see, that in /dev/mapper there is only the file "control"
>
> Can somebody please give me a hint?
>
> Thanx in advance.
> --
> [email protected] mailing list
>
>
--
[email protected] mailing list