tldr/pages/linux/wipefs.md

25 lines
610 B
Markdown
Raw Normal View History

2020-06-18 12:58:03 +01:00
# wipefs
> Wipe filesystem, raid, or partition-table signatures from a device.
> More information: <https://manned.org/wipefs>.
2020-06-18 12:58:03 +01:00
- Display signatures for specified device:
`sudo wipefs {{/dev/sdX}}`
2020-06-18 12:58:03 +01:00
- Wipe all available signature types for a specific device with no recursion into partitions:
2020-06-18 12:58:03 +01:00
`sudo wipefs --all {{/dev/sdX}}`
2020-06-18 12:58:03 +01:00
- Wipe all available signature types for the device and partitions using a glob pattern:
`sudo wipefs --all {{/dev/sdX}}*`
2020-06-18 12:58:03 +01:00
- Perform dry run:
`sudo wipefs --all --no-act {{/dev/sdX}}`
2020-06-18 12:58:03 +01:00
- Force wipe, even if the filesystem is mounted:
`sudo wipefs --all --force {{/dev/sdX}}`