Article
Problem:
Private data can still be recovered when you format your Linux/Microsoft Windows machine.
Solution:
There are two possible solutions. The first solution is using the dd command:
dd if=/dev/urandom of=/dev/sda
This command will overwrite the data stored on the /dev/sda partition with random junk, however, there is a disadvantage with using the dd command and that is the speed that it takes to overwriting the data. The second solution is to use the shred command:
shred -v -n 1 /dev/sda
This will overwrite the data on the /dev/sda partition with random junk and at a much faster speed.
Environment:
SUSE Enterprise Linux Desktop 10
- SUSE Enterprise Linux Server 10
- SUSE Enterprise Linux Desktop 10 SP1
- SUSE Enterprise Linux Server 10 SP1
Disclaimer: As with everything else at Cool Solutions, this content is definitely not supported by Novell (so don't even think of calling Support if you try something and it blows up).
It was contributed by a community member and is published "as is." It seems to have worked for at least one person, and might work for you. But please be sure to test, test, test before you do anything drastic with it.
Related Articles
User Comments
- Be the first to comment! To leave a comment you need to Login or Register
- 3133 reads


0