1
0
mirror of https://github.com/tiyn/wiki.git synced 2026-03-10 00:44:46 +01:00

proxmox: added instruction for setting up proxmox after initial installation

This commit is contained in:
TiynGER
2021-01-11 22:04:10 +01:00
parent a35e1c6a9b
commit 3bba8f5591
4 changed files with 41 additions and 0 deletions

10
wiki/linux/lvm.md Normal file
View File

@@ -0,0 +1,10 @@
# LVM
`lvm` is a utility to create logical volumes.
## Create VG for proxmox
Setup the disk for the physical volume with `sgdisk -N 1 /dev/sdb`.
Then create the physical volume `pvcreate --metadatasize 250k -y -ff /dev/sdb1`.
And finally create the volume group `vgcreate vmdata /dev/sdb1`.
Then follow the guide in proxmox on how to connect a `vg` to proxmox.