1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

pvremove: add page (#14360)

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>
This commit is contained in:
Shou-Chi Chen 2024-10-28 00:31:17 +08:00 committed by GitHub
parent cb15d1e09c
commit 42aecfb454
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

24
pages/linux/pvremove.md Normal file
View file

@ -0,0 +1,24 @@
# 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}}`