Files
cheatsheet-tldr/tldr/linux/vgextend
2025-06-28 00:19:57 +00:00

18 lines
417 B
Plaintext

---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# vgextend
> Add one or more physical volumes to an existing volume group.
> More information: <https://manned.org/vgextend>.
- Add a physical volume to an existing volume group:
`vgextend {{vg1}} {{/dev/sda1}}`
- Add multiple physical volumes to an existing volume group:
`vgextend {{vg1}} {{/dev/sda1 /dev/sda2 ...}}`