Answers:
使用分手
它可能有点复杂,所以请在Internet(官方手册)或上阅读man parted
。一些开始的命令:
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
然后格式化您的分区,不确定ubuntu中的命令,请尝试
mkfs --type ext4 /dev/sdXY
用于ext4分区。
这足以使您能够挂载该分区。