Hello
Pardon my dumb question, I'm a newbie with Proxmox and I haven't been able to find an answer on the forum:
How do I separate my root volume from the data one in which I'd like to store all content (VMs, dumps, iso...)?
I'm having the following issue at boot (see attached picture):
I have defined and formatted a new data LV:
and added an entry in /etc/fstab:
I can mount /dev/pve/data successfully manually but this does not happen at boot time
I suspect I must edit /etc/pve/storage.config, not sure how (I've tried suppressing the 2nd entry without success)?
Thanks
Pardon my dumb question, I'm a newbie with Proxmox and I haven't been able to find an answer on the forum:
How do I separate my root volume from the data one in which I'd like to store all content (VMs, dumps, iso...)?
I'm having the following issue at boot (see attached picture):
timeout waiting for device /dev/pve/data
I have defined and formatted a new data LV:
Code:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
nvme0n1 259:0 0 465.8G 0 disk
├─nvme0n1p1 259:1 0 1007K 0 part
├─nvme0n1p2 259:2 0 512M 0 part /boot/efi
└─nvme0n1p3 259:3 0 465.3G 0 part
├─pve-root 253:0 0 16G 0 lvm /
├─pve-data_tmeta 253:1 0 4.3G 0 lvm
│ └─pve-data 253:3 0 424.3G 0 lvm /var/lib/vz
└─pve-data_tdata 253:2 0 424.3G 0 lvm
└─pve-data 253:3 0 424.3G 0 lvm /var/lib/vz
and added an entry in /etc/fstab:
Code:
/dev/pve/root / ext4 errors=remount-ro 0 1
/dev/pve/data /var/lib/vz ext4 defaults 0 1
UUID=AC05-2B7C /boot/efi vfat defaults 0 1
proc /proc proc defaults 0 0
I can mount /dev/pve/data successfully manually but this does not happen at boot time
I suspect I must edit /etc/pve/storage.config, not sure how (I've tried suppressing the 2nd entry without success)?
Code:
dir: local
path /var/lib/vz
content iso,vztmpl,backup
#lvmthin: local-lvm
# thinpool data
# vgname pve
# content rootdir,images
Thanks