Add Disk to Proxmox
Identify the new disk
lsblk
Format and partition
If you don't already have it, install parted
apt policy parted && apt install parted
then run
parted /dev/sdb mklabel gpt
parted -a opt /dev/sdb mkpart primary ext4 0% 100%
mkfs.ext4 -L storageprox /dev/sdb1
Check partition names:
lsblk -fs
Mount the partition
Mount the Disk in Proxmox
[TODO] Fill information about mounting a disk in Proxmox