Hi,
I just upgraded my box to 14.04 and on bootup I got a message, that my RAID devices can't be mounted automatically so I chose to skip it and work through it after boot time. Now booted up, A mount -a gives me:
while my mdadm.conf looks like:
just quickly started gparted to check if all my dirves show up and fair enough, my partitions 6 & 7 show up just fine on drives sdb and sdc.
Also, seems like mdadm is running just fine:
what could be my problem here, I don't quite follow. Any help would be appreciated!
Thank you!
Ron
I just upgraded my box to 14.04 and on bootup I got a message, that my RAID devices can't be mounted automatically so I chose to skip it and work through it after boot time. Now booted up, A mount -a gives me:
Code:
$ sudo mount -a [sudo] password for reg: mount: wrong fs type, bad option, bad superblock on /dev/md0, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail or so mount: wrong fs type, bad option, bad superblock on /dev/md1, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail or so $
Code:
$ cat /etc/mdadm/mdadm.conf # mdadm.conf # # Please refer to mdadm.conf(5) for information about this file. # # by default (built-in), scan all partitions (/proc/partitions) and all # containers for MD superblocks. alternatively, specify devices to scan, using # wildcards if desired. #DEVICE partitions containers # auto-create devices with Debian standard permissions CREATE owner=root group=disk mode=0660 auto=yes # automatically tag new arrays as belonging to the local system HOMEHOST <system> # instruct the monitoring daemon where to send mail alerts MAILADDR root # next line added by reg 09/01/2009 ARRAY /dev/md0 devices=/dev/sdb6,/dev/sdc6 ARRAY /dev/md1 devices=/dev/sdb7,/dev/sdc7 #ARRAY /dev/md2 devices=/dev/sdb8,/dev/sdc8 # definitions of existing MD arrays # This file was auto-generated on Tue, 08 May 2012 18:26:22 -0700 # by mkconf $Id$ $
Also, seems like mdadm is running just fine:
Code:
$ ps ax | grep mdadm 1945 ? Ss 0:00 /sbin/mdadm --monitor --pid-file /run/mdadm/monitor.pid --daemonise --scan --syslog 7869 pts/8 S+ 0:00 grep --color=auto mdadm $
Thank you!
Ron
Comment