I am trying to migrate my Proxmox install to a 1L mini pc, so that I can convert my current much underused server into a second backup NAS.
I have a 120GB SATA SSD that I intend to use as a OS drive. I also have a 1TB NVMe drive that I want to use as VM/CT storage and also for PBS backups. The PBS backups will be synced with the NAS via a systemd timer to have a backup which again will have a secondary backup to my 2nd NAS
During testing when I installed proxmox and went with defaults, it created the following partitions on the 120GB drive as shown in lsblk:
In the UI, I could only see the "local" storage and did NOT see the "local-lvm" storage
I only had 8GB RAM initially during testing, so I understand the swap size. I have since upgraded to 16GB RAM. But what are the _tmeta and _tdata partitions in lsblk. These partitions would not show up in df -h.
Also, when I created a test LXC container with a 8GB disk size, it utilized the space from the root partition and not from the pve-data partition.
So my questions are:
I have a 120GB SATA SSD that I intend to use as a OS drive. I also have a 1TB NVMe drive that I want to use as VM/CT storage and also for PBS backups. The PBS backups will be synced with the NAS via a systemd timer to have a backup which again will have a secondary backup to my 2nd NAS
During testing when I installed proxmox and went with defaults, it created the following partitions on the 120GB drive as shown in lsblk:
Code:
lsblk
└─sda1 8:3 0 120G 0 part
├─pve-swap 253:4 0 7.8G 0 lvm [SWAP]
├─pve-root 253:5 0 37.5G 0 lvm /
├─pve-data_tmeta 253:6 0 1G 0 lvm
│ └─pve-data 253:8 0 49.5G 0 lvm
└─pve-data_tdata 253:7 0 49.5G 0 lvm
└─pve-data 253:9 0 49.5G 0 lvm
I only had 8GB RAM initially during testing, so I understand the swap size. I have since upgraded to 16GB RAM. But what are the _tmeta and _tdata partitions in lsblk. These partitions would not show up in df -h.
Also, when I created a test LXC container with a 8GB disk size, it utilized the space from the root partition and not from the pve-data partition.
So my questions are:
- What are these _tmeta & _tdata partitions?
- Why was the 49.5GB space not used for the LXC storage?
- Would it be ok to utilize the storage on the SATA ssd and the NVMe drive for CT storage? If so, how should I partition the 120GB drive before install?