1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 07:15:32 +02:00

vgextend: add page (#16989)

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
Suraj Devatha 2025-06-27 09:51:59 -07:00 committed by GitHub
parent f21bc57cdf
commit b4756445a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

12
pages/linux/vgextend.md Normal file
View file

@ -0,0 +1,12 @@
# 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 ...}}`