1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 09:15:31 +02:00

vgcreate: add page (#1269)

This commit is contained in:
Rogelio Cedillo 2017-02-20 21:48:35 -06:00 committed by Agniva De Sarker
parent a7127f16eb
commit 51318c0996

11
pages/linux/vgcreate.md Normal file
View file

@ -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}}`