mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
sfill: add page (#5745)
This commit is contained in:
parent
3252dab36b
commit
228e3cc92e
1 changed files with 24 additions and 0 deletions
24
pages/linux/sfill.md
Normal file
24
pages/linux/sfill.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# 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}}`
|
Loading…
Add table
Reference in a new issue