mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-16 17:49:13 +00:00
Update cheatsheets
This commit is contained in:
18
linux/vgcreate
Normal file
18
linux/vgcreate
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# vgcreate
|
||||
|
||||
> Create volume groups combining multiple mass-storage devices.
|
||||
> See also: `lvm`.
|
||||
> More information: <https://man7.org/linux/man-pages/man8/vgcreate.8.html>.
|
||||
|
||||
- Create a new volume group called vg1 using the `/dev/sda1` device:
|
||||
|
||||
`vgcreate {{vg1}} {{/dev/sda1}}`
|
||||
|
||||
- Create a new volume group called vg1 using multiple devices:
|
||||
|
||||
`vgcreate {{vg1}} {{/dev/sda1}} {{/dev/sdb1}} {{/dev/sdc1}}`
|
||||
Reference in New Issue
Block a user