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,351 times
3
EricVonB
- 245
- 1
- 4
- 10
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,787