1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-04 07:47:45 +02:00

lvm: added excluded by a filter bugfix

This commit is contained in:
TiynGER 2021-03-05 15:35:02 +01:00
parent 4a403dfa8b
commit 31f0dbce71

View File

@ -4,7 +4,11 @@
## Create VG for proxmox
We will use `/dev/sdb` as our drive.
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 create the physical volume `pvcreate /dev/sdb`.
The previous step can come to a halt when the device already contains an old
partition table and will display the error `Device /dev/sdb excluded by a filter`.
This can be solved by removing the old partition table with `wipefs -a /dev/sdb`.
And finally create the volume group `vgcreate vmdata /dev/sdb`.
Then follow the guide in proxmox on how to connect a `vg` to proxmox.