mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 14:42:07 +02:00

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc> Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
525 B
525 B
pvremove
Remove LVM labels from physical volume(s). More information: https://manned.org/pvremove.
- Remove a LVM label from a physical volume:
sudo pvremove {{/dev/sdXY}}
- Display detailed output during the operation:
sudo pvremove --verbose {{/dev/sdXY}}
- Remove a LVM label without asking for confirmation:
sudo pvremove --yes {{/dev/sdXY}}
- Forcefully remove a LVM label:
sudo pvremove --force {{/dev/sdXY}}
- Display output in JSON format:
sudo pvremove --reportformat json {{/dev/sdXY}}