Quizás no lo tengo muy claro en el título. Cuando intento ensamblar mi matriz raid1 con mdadm:
sudo mdadm --assemble /dev/md0 /dev/sdc /dev/sdd
me dice que
mdadm: Cannot assemble mbr metadata on /dev/sdc
mdadm: /dev/sdc has no superblock - assembly aborted
Si reordeno los dispositivos al mando:
sudo mdadm --assemble /dev/md0 /dev/sdd /dev/sdc
Dice lo mismo para sdd
:
mdadm: Cannot assemble mbr metadata on /dev/sdd
mdadm: /dev/sdd has no superblock - assembly aborted
Aquí hay información sobre las unidades:
➜ ~ sudo mdadm --misc -E /dev/sdc
/dev/sdc:
MBR Magic : aa55
Partition[0] : 3907029167 sectors at 1 (type ee)
➜ ~ sudo mdadm --misc -E /dev/sdd
/dev/sdd:
MBR Magic : aa55
Partition[0] : 3907029167 sectors at 1 (type ee)
¡Pero! Cuando estoy recreando una matriz con
➜ ~ sudo mdadm --create /dev/md0 -n 2 -l 1 /dev/sdc /dev/sdd
mdadm: /dev/sdc appears to be part of a raid array:
level=raid0 devices=0 ctime=Thu Jan 1 07:00:00 1970
mdadm: partition table exists on /dev/sdc but will be lost or
meaningless after creating array
mdadm: Note: this array has metadata at the start and
may not be suitable as a boot device. If you plan to
store '/boot' on this device please ensure that
your boot-loader understands md/v1.x metadata, or use
--metadata=0.90
mdadm: /dev/sdd appears to be part of a raid array:
level=raid0 devices=0 ctime=Thu Jan 1 07:00:00 1970
mdadm: partition table exists on /dev/sdd but will be lost or
meaningless after creating array
Continue creating array? yes
mdadm: Defaulting to version 1.2 metadata
mdadm: array /dev/md0 started.
¡En lugar de crear la nueva matriz, inicia mi matriz!
➜ ~ ls -l /dev/mapper/MisakaMirror-alldata
lrwxrwxrwx 1 root root 7 май 19 01:48 /dev/mapper/MisakaMirror-alldata -> ../dm-2
Pero quiero lograr esto con
mdadm --assemble
Para hacerlo automáticamente. Gracias.