hello people,
I have been reading quite a bit how to add a new ssd to my homelab (proxmox) and how to add it as lvm-thin storage...
I got to the following list of actions (assuming that nvme0n1 is the newly added SSD)
my readings tells me that the next actions should be :
I have been reading quite a bit how to add a new ssd to my homelab (proxmox) and how to add it as lvm-thin storage...
I got to the following list of actions (assuming that nvme0n1 is the newly added SSD)
- format the disk
Code:
sgdisk -N 1 /dev/nvme0n1
- create a physical volume
Code:
pvcreate /dev/nvme0n1
- create a volume group
Code:
vgcreate pve_nvme0n1 /dev/nvme0n1
Code:pve
my readings tells me that the next actions should be :
- create LVM thin pool
- create LVM thin volume
- EXT4 File System
- Mount new Logical Volume (LV)
- Add the LVM-Thin in proxmox UI
- validate initial three points
- get confirmation and seek suggestions on the 5 "next actions" points
- can I create a LVM thin pool that is 100% of the available storage?
- why I need a volume within the thin pool?
- do I need to mount the LV? why?