Why do wipe out files?
(needs writing)
Tools
There are several tools to achieve this.
On Command Line:
On GUI:
Wiping out files and partitions
Wiping out files thru command line
To wipe out a file you can use the following command:
$ shred -f -nM -v -z -u file
Where:
-f forces to overwrite,
-nM overwrites it M times,
-v shows you what's going on,
-z fills with zeros,
-u removes the file after overwriting it,
file is the name of the file.
To wipe out a partition you can use the following command:
$ shred -f -nM -v -z /dev/sdX
Where:
-f forces to overwrite,
-nM overwrites it M times,
-v shows you what's going on,
-z fills with zeros, X the letter of the drive.
If the above does not work, try with sudo.
Wiping out files thru GUI
(needs writing)
Revisions
02/07/2014 - 21:47
08/10/2014 - 23:10
09/17/2016 - 16:39
09/17/2016 - 17:00
04/18/2024 - 15:12