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

12 lines
256 B
Markdown
Raw Normal View History

2017-02-20 21:48:35 -06:00
# 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}}`