Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

29
linux/sfill Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# sfill
> Securely overwrite the free space and inodes of the partition where the specified directory resides.
> More information: <https://manned.org/sfill>.
- Overwrite free space and inodes of a disk with 38 writes (slow but secure):
`sfill {{/path/to/mounted_disk_directory}}`
- Overwrite free space and inodes of a disk with 6 writes (fast but less secure) and show status:
`sfill -l -v {{/path/to/mounted_disk_directory}}`
- Overwrite free space and inodes of a disk with 1 write (very fast but insecure) and show status:
`sfill -ll -v {{/path/to/mounted_disk_directory}}`
- Overwrite only free space of a disk:
`sfill -I {{/path/to/mounted_disk_directory}}`
- Overwrite only free inodes of a disk:
`sfill -i {{/path/to/mounted_disk_directory}}`