I've tried doing this a few ways, and tried a few solutions (some which have been successful for me in the past), however nothing. If anyone could help me I'd be very greatful. Thanks in advance.
Dave
----
When I boot with the following line in fstab:
Code:
/dev/md0 /data reiserfs defaults 0 1
I get errors on startup:
Code:
# dmesg |grep reiser:
ReiserFS: md0: warning: sh-2021: reiserfs_fill_super: can not find reiserfs on md0
ReiserFS: md0: warning: sh-2021: reiserfs_fill_super: can not find reiserfs on md0
ReiserFS: md0: warning: sh-2021: reiserfs_fill_super: can not find reiserfs on md0
ReiserFS: md0: warning: sh-2021: reiserfs_fill_super: can not find reiserfs on md0
ReiserFS: md0: found reiserfs format "3.6" with standard journal
If I boot without the line in fstab however startup is fine, however no md0 on /data. However few things I noticed:
Code:
# cat /proc/mdstat
Personalities :
unused devices: <none>
# mdadm -As
mdadm: /dev/md0 has been started with 2 drives.
# mount -t reiserfs /dev/md0 /data
# cat /proc/mdstat
Personalities : [raid0]
md0 : active raid0 sda[0] sdb[1]
312581632 blocks 64k chunks
unused devices: <none>
Now everything is how I want it, but need it on boot. I think this might be useful:
Code:
# ls /etc/rcS.d
README S10checkroot.sh S25raid2 S36discover S40hostname.sh S48console-screen.sh S70nviboot
S02mountvirtfs S18hwclockfirst.sh S26checkfs.sh S36mountvirtfs S40hotplug S50hwclock.sh
S05bootlogd S20module-init-tools S30etc-setserial S38pppd-dns S40networking S51ntpdate
S05initrd-tools.sh S20modutils S30procps.sh S39dns-clean S45mountnfs.sh S55bootmisc.sh
S05keymap.sh S25mdadm-raid S35mountall.sh S39ifupdown S46setserial S55urandom
# cat /etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file should contain the names of kernel modules that are
# to be loaded at boot time, one per line. Comments begin with
# a "#", and everything on the line after them are ignored.
reiserfs
sata_sil
ide-cd
ide-generic
Thanks again.