当我添加 gpt 分区表时,在分区上运行 mkfs.ext4 一直说找到了一个 dos 分区表

当我添加 gpt 分区表时,在分区上运行 mkfs.ext4 一直说找到了一个 dos 分区表

我将一个 1TB 外部 USB 驱动器插入运行 Ubuntu Server LTS 的 Raspberry Pi 4。我试图对驱动器进行分区、格式化和安装。我的计划是最终使用它来存储 PostgreSql 数据库。

以下是我正在采取的步骤:

sudo fdisk -l (to list the drives and get the name)
sudo fdisk /dev/sda (to run fdisk on the drive)
g (to create a new empty GPT partition table)
n (to add a new partition, with all defaults)
w (to write the table to disk and exit)

接下来我想在分区上创建一个文件系统来格式化它:

sudo mkfs.ext4 /dev/sda1

我不断收到消息:

Found a dos partition table in /dev/sda1
Proceed anyway? (y,N)

我为什么会收到此消息?它是什么意思?我选择在使用fdisk时添加gpt分区表,而不是dos。也许当我早些时候了解这一切时我可能犯了一个错误?如果是这种情况,我如何才能将驱动器完全擦除到未分区的空间并从第一个开始?

相关内容