Regarding the secure-delete command in Linux, what is the difference between srm -f, srm -l and srm -fl ? Which is fastest? Which is most secure?
Asked
Active
Viewed 1,365 times
3
EricVonB
- 245
1 Answers
2
-f fast (and insecure mode): no /dev/urandom, no synchronize mode.
-l lessens the security. Only two passes are written: one mode with 0xff and a final mode random values.Ubuntu Manuals
Mitch
- 109,937
man srm) might be of assistance. – You'reAGitForNotUsingGit Oct 22 '16 at 11:39