Browse Source

vgcreate: add page (#1269)

Rogelio Cedillo 8 years ago
parent
commit
51318c0996
1 changed files with 11 additions and 0 deletions
  1. 11 0
      pages/linux/vgcreate.md

+ 11 - 0
pages/linux/vgcreate.md

@@ -0,0 +1,11 @@
+# vgcreate
+
+> Create a volume group.
+
+- Create a new volume group called vg1 using `/dev/sda1`:
+
+`vgcreate {{vg1}} {{/dev/sda1}}`
+
+- Create a new volume group called vg1 using multiple devices:
+
+`vgcreate {{vg1}} {{/dev/sda1}} {{/dev/sdb1}} {{/dev/sdc1}}`