Explorar el Código

vgremove: add page (#14618)

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
Shou-Chi Chen hace 3 meses
padre
commit
bdb298844c
Se han modificado 1 ficheros con 24 adiciones y 0 borrados
  1. 24 0
      pages/linux/vgremove.md

+ 24 - 0
pages/linux/vgremove.md

@@ -0,0 +1,24 @@
+# vgremove
+
+> Remove volume group(s) in LVM.
+> More information: <https://manned.org/vgremove>.
+
+- Remove a volume group with confirmation:
+
+`vgremove {{volume_group}}`
+
+- Forcefully remove a volume group without confirmation:
+
+`vgremove --force {{volume_group}}`
+
+- Set the debug level for detailed logging to level 2, (repeat `--debug` up to 6 times to increase the level):
+
+`vgremove --debug --debug {{volume_group}}`
+
+- Use a specific config setting to override defaults:
+
+`vgremove --config '{{global/locking_type=1}}' {{volume_group}}`
+
+- Display help text for usage information:
+
+`vgremove --help`