web-dev-qa-db-fra.com

Comment accélérer les badblocs

Il a été 50h et c'est seulement 0.04% du chemin à travers ... que si mes mathématiques sont corrects signifie que cela sera fini après un autre 2,000,000h (pas de vrais maths)

hutber@hutber:~$ badblocks -svw -b 4096 -c 200000 /dev/sda -o bb_sdc.txt
Checking for bad blocks in read-write mode
From block 0 to 1953506645
Testing with pattern 0xaa:   0.04% done, 50:47:27 elapsed. (0/783975/0 errors)

Y a-t-il une façon de pouvoir courir cela sans qu'il prenne si longtemps?

1
Jamie Hutber

Remarque: n'abandonnez pas de mauvais blocage!

Remarque: NE PAS BAD BLOCK UN SSD

Remarque: Sauvegardez d'abord vos fichiers importants!

Remarque: cela prendra de nombreuses heures

Remarque: vous pouvez avoir une défaillance du disque dur en attente

Démarrez à un DVD/USB Ubuntu en direct dans "Essayez Ubuntu".

Dans terminal...

Sudo fdisk -l # Identifier tous les partitions "Linux FileSystem"

Sudo e2fsck -fcky /dev/sdXX # test en lecture seule

ou alors

Sudo e2fsck -fccky /dev/sdXX # Test de lecture/écriture non destructive (Recommandé)

Le -k est important, car il enregistre la précédente table blanche et ajoute de nouveaux mauvais blocs à cette table. Sans -k, vous perdez toutes les informations préalables en bloc.

Le paramètre -fccky ...

   -f    Force checking even if the file system seems clean.

   -c    This option causes e2fsck to use badblocks(8) program to do
         a read-only scan of the device in order to find any bad blocks.
         If any bad blocks are found, they are added to the bad block
         inode to prevent them from being allocated to a file or direc‐
         tory.  If this option is specified twice, then the bad block scan
         will be done using a non-destructive read-write test.

   -k    When combined with the -c option, any existing bad blocks in the
         bad blocks list are preserved, and any new bad blocks found by
         running badblocks(8) will be added to the existing bad blocks
         list.

   -y    Assume an answer of `yes' to all questions; allows e2fsck to be
         used non-interactively. This option may not be specified at the
         same time as the -n or -p options.
2
heynnema