You are not logged in.
Pages: 1
My question is: how to mount hardware RAID 0 ? i have the newest version of arch linux. Raid is on nvidia chipset. after searching a little i found out that it is not the way in "software raid" on wiki. I need to keep it hardware RAID because there is already installed windows. so all i want to do is just mount ma windows partitions in linux.
Thanks for help
P.S
i'm new to the arch - but i already think this is great distro
Last edited by yobdab (2008-01-15 18:59:13)
Offline
Your nVidia RAID-set is not hardware RAID. It's firmware (or software) RAID because your RAID-controller lets your CPU do all the RAID-calculations.
You need to find out which module is appropriate for nVidia RAID. After loading it, the module should detect your array and create a device for it (e.g. /dev/nvidia/raid0 or something). Then you can list the partitions on your array using "fdisk -l /dev/nvidia/raid0" and see which one is your Windows partition. Finally you can mount the partition using for instance "mount /dev/nvidia/raid0p1 /mnt/windows".
A bus station is where a bus stops.
A train station is where a train stops.
On my desk I have a workstation.
Offline
ok, now i find out that dmraid found this stripe.
but still dont know how to mount it. because evrey www page says that after dmraid -ay it should be ok, but after that nothing happens...
root@badboy dev]# dmraid -ay
[root@badboy dev]# dmraid -s
*** Set
name : nvidia_fjhceaib
size : 1250284800
stride : 128
type : stripe
status : ok
subsets: 0
devs : 2
spares : 0
a liittle more hgelp please?:)
Offline
Check the output of dmesg. Does it mention anything concerning the disks? You may still have to create the actual device, for instance
mdadm --assemble /dev/md0 /dev/sda /dev/sdb
A bus station is where a bus stops.
A train station is where a train stops.
On my desk I have a workstation.
Offline
my two hd is sdb and sdc so i try this:
root@badboy ~]# mdadm --assemble /dev/md0 /dev/sdb /dev/sdc
mdadm: no recogniseable superblock on /dev/sdb
mdadm: /dev/sdb has no superblock - assembly aborted
have no idea what's next
ah end also:
dmesg | tail
NTFS-fs error (device sdc1): ntfs_fill_super(): Failed to load essential metadata.
md: md0 stopped.
md: md0 stopped.
md: md0 stopped.
md: md0 stopped.
md: md127 stopped.
md: md127 stopped.
md: md0 stopped.
md: md0 stopped.
md: md0 stopped.
Last edited by yobdab (2008-01-15 14:24:32)
Offline
dmraid -b
to list the block devices. You need to find out what devices your RAID consists off. It's also possible Linux can't handle your array because you're probably using the onboard config (RAID BIOS) rather than Linux software RAID.
A bus station is where a bus stops.
A train station is where a train stops.
On my desk I have a workstation.
Offline
I do using this bios raid, but i need it because i have there windows that i need.
as i said before my raid HD is /dev/sdb and /dev/sdc:
[root@badboy ~]# dmraid -b
/dev/sda: 156368016 total, "S00MJ10Y202554"
/dev/sdb: 625142448 total, "WD-WCAPZ3321883"
/dev/sdc: 625142448 total, "WD-WCAS60015385"
Last edited by yobdab (2008-01-15 18:00:29)
Offline
OK i got it!!! it was simply not loaded the device-mapper module in kernel
Offline
Nice!
modprobe dm-mod
Just to be complete for other users with the same problem.
A bus station is where a bus stops.
A train station is where a train stops.
On my desk I have a workstation.
Offline
Pages: 1