mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-13 22:51:13 +03:00
353 B
353 B
blkdiscard
Discards device sectors on storage devices. Useful for SSDs.
- Discard all sectors on a device, removing all data:
blkdiscard /dev/{{device}}
- Securely discard all blocks on a device, removing all data:
blkdiscard --secure /dev/{{device}}
- Discard the first 100MB of a device:
blkdiscard --length {{100MB}} /dev/{{device}}