Expandir matriz RAID

0

Sou muito novo no RAID, então, por favor, perdoe minha pergunta boba.
Eu tenho umUbuntu Server 12.04 x64% instalado em um pc com 4 hdds.
Durante a configuração do RAID eu selecionei o RAID10 e (minha ignorância) escolhi 2 hdds ativos e 2 hdds extras. Tenho certeza que não é a configuração ideal e, provavelmente, eu deveria ter selecionado 4 hdds ativos.

Executando cat /proc/mdstat recebo

md1 : active raid10 sdb2[1] sdd2[3](S) sdc2[2](S) sda2[0]
      948736 blocks super 1.2 2 near-copies [2/2] [UU]

md0 : active raid10 sdb1[1] sdd1[3](S) sdc1[2](S) sda1[0]
      311619072 blocks super 1.2 2 near-copies [2/2] [UU]

unused devices: <none>

Existe uma maneira de converter discos sobressalentes em discos ativos?
Eu tentei usar mdadm --grow /dev/md1 --raid-devices=4 , mas recebi esta resposta

mdadm: RAID10 can only be changed to RAID0
    
por Marco 04.09.2013 / 10:09

1 resposta

1

Você não pode aumentar um RAID1 + 0 (não é suportado pelo mdadm).

De mdadm manpage:

Grow (or shrink) an array, or otherwise reshape it in some way. Currently supported growth options including changing the active size of component devices and changing the number of active devices in Linear and RAID levels 0/1/4/5/6, changing the RAID level between 0, 1, 5, and 6, and between 0 and 10, changing the chunk size and layout for RAID 0,4,5,6, as well as adding or removing a write-intent bitmap.

    
por Cubiq 04.09.2013 / 10:44