Attach storage
first add as hdd via proxmox
#list
lsblk
#check size
sudo fdisk -l /dev/sdb
#Recreate the Partition // use n/d then p and w to save
sudo fdisk /dev/sdb
#unmount
sudo umount /mnt/aria2_data/
sudo umount /dev/sdb1
#format it
sudo mkfs.ext4 /dev/sdb1
#mount -
sudo mkdir -p /mnt/aria2_data/
sudo mount /dev/sdb1 /mnt/aria2_data/
#Get the UUID of the partition
sudo blkid /dev/sdb1
#add it
nano /etc/fstab
UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/aria2_data ext4 defaults 0 2
#Test
sudo mount -a
#Verify the Mount
df -h
#check error
dmesg | grep sdb
#Review Mount Status
findmnt /mnt/aria2_data
#Reboot and Verify
Comments
Post a Comment