Link to home
Start Free TrialLog in
Avatar of Luis N
Luis NFlag for Spain

asked on

mdadm create raid change name

in ubuntu, I created a raid with this command

mdadm -C /dev/md0 --level=raid1 --raid-devices=2 /dev/sdb /dev/sdc

And works fine, but when I reboot the system, the new array are in /dev/md127 (I hope that was in /dev/md0) Why? and how can I fix it to maintain the same pointer /dev/md0 that in the creation command?

Regards
Avatar of arnold
arnold
Flag of United States of America image

df -k
more /etc/mdadm.conf
more /etc/fstab

your initial setup might be referring or is using /dev/md127 to assemble the two drives you referenced.

There is no information on what you have currently.
ASKER CERTIFIED SOLUTION
Avatar of ravenpl
ravenpl
Flag of Poland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Luis N

ASKER

Great!