Multiple Hardware RAID

fdisk is limited to the partition size it can create.
You have to use parted.
fdisk is good to see which disk is label which in the /dev/sdx
use parted to create your partition.
Normally I use the following sequence of commands
Code:
# parted
select /dev/sdx
mklabel gpt
mkpart primary 1 -1
exit
mkfs.ext4 -O ^has_journal /dev/sdx1
Don't use actual sdx replace with your drive as seen by fdisk
mkpart primary 1 -1 is supposed to partition 100% of the drive. You can use that accordingly or find a different command for what you want
 
fdisk is limited to the partition size it can create.
You have to use parted.
fdisk is good to see which disk is label which in the /dev/sdx
use parted to create your partition.
Normally I use the following sequence of commands
Code:
# parted
select /dev/sdx
mklabel gpt
mkpart primary 1 -1
exit
mkfs.ext4 -O ^has_journal /dev/sdx1
Don't use actual sdx replace with your drive as seen by fdisk
mkpart primary 1 -1 is supposed to partition 100% of the drive. You can use that accordingly or find a different command for what you want

Could I expand the partition I have already created /dev/sdb2?
 

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!