Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-21 00:20:25 +00:00
parent 96cc0e16c6
commit 53eeb491f5
6 changed files with 75 additions and 18 deletions

View File

@@ -9,10 +9,10 @@ source: https://github.com/tldr-pages/tldr.git
> See also: `lvm`.
> More information: <https://manned.org/vgcreate>.
- Create a new volume group called vg1 using the `/dev/sda1` device:
- Create a new volume group using the specified device:
`vgcreate {{vg1}} {{/dev/sda1}}`
`sudo vgcreate {{volume_group}} {{/dev/sdXY}}`
- Create a new volume group called vg1 using multiple devices:
- Create a new volume group using multiple devices:
`vgcreate {{vg1}} {{/dev/sda1}} {{/dev/sdb1}} {{/dev/sdc1}}`
`sudo vgcreate {{volume_group}} {{/dev/sdXY}} {{/dev/sdXZ}}`