Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Add Disk to Proxmox ====== Part of my [[engineering:computer_science:homelab:homelab|HomeLab]] and my [[engineering:computer_science:homelab:proxmox:proxmox|Proxmox]] documentation. Via SSH as root ==== Identify the new disk ==== <code bash> lsblk </code> ==== Format and partition ==== If you don't already have it, install parted <code bash> apt policy parted && apt install parted </code> then run <code bash> parted /dev/sdb mklabel gpt </code> <code bash> parted -a opt /dev/sdb mkpart primary ext4 0% 100% </code> <code bash> mkfs.ext4 -L storageprox /dev/sdb1 </code> ==== Check partition names: ==== <code bash> lsblk -fs </code> ==== Mount the partition ==== [[engineering:computer_science:linux:linux_mount_drive|Mount Drive in Linux]] ==== Mount the Disk in Proxmox ==== [TODO] Fill information about mounting a disk in Proxmox CKG Edit engineering/computer_science/homelab/proxmox/add_disk_to_proxmox.txt Last modified: 2024/08/16 13:56by carlossousa