Risposte:
Usa parted
potrebbe essere un po 'complicato, quindi leggi su internet (manuale ufficiale) o man parted
. Alcuni comandi per iniziare:
parted /dev/sdX # substitute with your drive (and you prolly need sudo)
> mklabel gpt # makes a new gpt partition table, afaik needed for >2TB
> mkpart pri 1 -1 # makes a new primary partition from start to end,
# note there are only primary partitions on gpt
dopo formatta la tua partizione, non esattamente sicuro del comando in Ubuntu, prova
mkfs --type ext4 /dev/sdXY
per una partizione ext4.
Questo dovrebbe bastare per farti montare la partizione.
Usa Gparted per partizionare e creare una partizione ext4 e starai bene.