Modification de taille de partitions / Récupération de données effacées / partitions détruites...
Gestion de partitions
http://en.wikipedia.org/wiki/List_of_disk_partitioning_softwareWindows
PowerQuest PartitionMagicParagon Partition Manager http://www.partition-manager.com/
Ranish Partition Manager http://www.ranish.com/part/
Linux
gpartedGNU Parted
Formatage FAT32
http://www.ridgecrop.demon.co.uk/index.htm?fat32format.htmRecover
mots clés : recover deleted fileshttp://www.commentcamarche.net/faq/sujet-309-recuperation-de-donnees-perdues
Handy Recovery
TestDisk et PhotoRec http://www.cgsecurity.org
http://www.cgsecurity.org/wiki/Damaged_Hard_Disk
ddrescue
http://savannah.gnu.org/projects/ddrescue/
Mondo Rescue
http://www.mondorescue.org
Effacement définitif de données
http://www.commentcamarche.net/faq/sujet-8784-effacer-de-maniere-sure-un-disque-durhttp://wiki.linuxquestions.org/wiki/Blanking_a_hard_drive
Il est parfois nécessaire de réaliser un formatage bas niveau d'un disque dur afin que les informations stockées ne puisse pas être facilement récupérées. Vous envisagez par exemple de vendre un vieux disque dur sur eBay mais vous ne voulez bien évidemment pas que vos données personnelles (vos mots de passe notamment) puissent être lues.
Avec dd
dd peut faire ça en écrivant des 1 et des 0 can do this by writing ones and zeros to the drive the lowest level. The following will almost certainly be enoughThis process is by design irreversable, and should not be done unless you are really sure
$ dd if=/dev/urandom of=/dev/hda #fill drive with random bits
$ dd if=/dev/zero of=/dev/hda #fill drive with all zeros
$ dd if=/dev/urandom of=/dev/hda #fill drive with random bits again
$ mkfs.ext3 -f /dev/hda #optional - be nice and format the drive for the next (Linux) user
Remember to change /dev/hda to the appropiate drive or partition!
This will take some time, and if paranoia is not a priority one pass of random bits should be enough. A person with special equipment may still be able to read your 'erased' data, but it will be way beyond most users.
Because dd can be used to write any data, you are not limited to random bits or zeros. Anything can be piped to dd and it will write it. So if you find that kind of thing funny you might write "GNU forever!" a few billion times accross the drive.
$ yes "GNU Forever!" | dd of=/dev/hda
Some security experts recomend complex multiple passes, but if your data is that precious grinding the drive to dust is probably more appropiate than selling it on ebay.
With GNU shred
shred is part of the GNU coreutils that should be included with every distro. It can overwrite files (including devices such as drives) repeatedly to make it harder for even very expensive hardware probing to recover the data.The default is for 25 passes, with various patterns of data. Although fewer itterations can be used, the default is very secure but will take a long time.
Recherche de fichiers en double / doublons
Windows
Easy Duplicate File Finder http://www.easyduplicatefinder.comCloneSpy http://www.clonespy.com
DupFiles http://www.funduc.com/dupfiles.htm
DoubleKiller http://www.bigbangenterprises.de/en/doublekiller/
Linux
http://elonen.iki.fi/code/misc-notes/remove-duplicate-filesTechnique
Calculer récursivement un hash md5Comparer les hash entre eux
Si même hash, alors on considère que c'est le même fichier
voir aussi :
- AstucesMaintenanceInfo
- MonterImageISO
There are no comments on this page. [Add comment]