minhas partições avançadas de sistema de arquivos possuem problemas?

3

Recentemente, uma das minhas unidades ficou ruim no meu RAID e estou substituindo por uma nova unidade. Eu usei esta resposta para espelhar a partição em minha unidade antiga para ressincronizá-la. Mas estou preocupado com a saída. Meus discos são 4k setores, eu fiz algo errado na primeira vez?

Checking that no-one is using this disk right now ...
OK
Warning: partition 1 does not end at a cylinder boundary
Warning: partition 2 does not start at a cylinder boundary
Warning: partition 2 does not end at a cylinder boundary
Warning: partition 3 does not start at a cylinder boundary 
Warning: partition 3 does not end at a cylinder boundary
Warning: partition 4 does not start at a cylinder boundary

Disk /dev/sda: 121601 cylinders, 255 heads, 63 sectors/track
Old situation:
Units = cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0

   Device Boot Start     End   #cyls    #blocks   Id  System
/dev/sda1   *      0+     12-     13-    102400   fd  Linux raid autodetect
/dev/sda2         12+   1318-   1306-  10485760   fd  Linux raid autodetect
/dev/sda3       1318+   2623-   1306-  10485760   fd  Linux raid autodetect
/dev/sda4       2623+ 121600  118978- 955685088+  fd  Linux raid autodetect
New situation:
Units = sectors of 512 bytes, counting from 0

   Device Boot    Start       End   #sectors  Id  System
/dev/sda1   *      2048    206847     204800  fd  Linux raid autodetect
/dev/sda2        206848  21178367   20971520  fd  Linux raid autodetect
/dev/sda3      21178368  42149887   20971520  fd  Linux raid autodetect
/dev/sda4      42149888 1953520064 1911370177  fd  Linux raid autodetect
Successfully wrote the new partition table

Re-reading the partition table ...
If you created or changed a DOS partition, /dev/foo7, say, then use dd(1)
to zero the first 512 bytes:  dd if=/dev/zero of=/dev/foo7 bs=512 count=1
(See fdisk(8).)
    
por xenoterracide 06.05.2012 / 02:22

1 resposta

3

Ter partições que não terminam em limites de cilindros pode colocar em fase alguns sistemas operacionais delicados e seus programas de particionamento. Seu disco só tem partições Linux, então presumo que você esteja apenas usando o Linux; O Linux não se importa.

Se o seu disco tiver setores de 4kB, você obterá um melhor desempenho se suas partições estiverem alinhadas a 4kB. Isso é difícil de conseguir após o fato, mas felizmente, todas as suas partições já têm alinhamento de 4kB.

    
por 06.05.2012 / 02:37