This is probably something simple, but my small knowledge of linux boot and run levels is proving not enough! I've got a resierfs partition on a raid (md0), and thats working fine when I manually mount it using either of:
Code:
# /etc/rcS.d/S35mountall.sh
# mount /data
.. however it really needs to be mounted on boot. I've tried symlinking S35mountall.sh in rc1,2,3,5,6 but nothing. My fstab is:
Code:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/hda2 / ext3 defaults,errors=remount-ro 0 1
/dev/hda1 none swap sw 0 0
/dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
/dev/md0 /data reiserfs defaults 0 0
Any help/ideas would be appreciated. Thanks in advance,
Dave