====== Add Disk to Proxmox ====== Part of my [[computer_science:homelab:homelab|HomeLab]] and my [[computer_science:homelab:proxmox:proxmox|Proxmox]] documentation. Via SSH as root ==== 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 ==== [[computer_science:linux:linux_mount_drive|Mount Drive in Linux]] ==== Mount the Disk in Proxmox ==== [TODO] Fill information about mounting a disk in Proxmox