如何将 USB 闪存驱动器格式化为 Ext2?

如何将 USB 闪存驱动器格式化为 Ext2?

当我使用 GUI 环境时,我只有 ext4、NTFS、FAT 等,但我需要输入它们的名称。我曾经尝试在那里打字ext2,但似乎卡住了。我等了很久还是没有格式化。我的操作系统 Debian,使用 Gnome 3。

答案1

有两个步骤。首先,您必须创建分区,然后必须在其上构建文件系统。以 root 身份从 CLI 执行以下命令,将在 USB 记忆棒上格式化并构建 ext2 文件系统。

将磁盘插入。运行dmesg并记下添加的新驱动器。

作为根用户:

fdisk /dev/sdX  # the drive letter only without a number

d (delete existing partitions.)
n (create new partition)
    use the default start and end blocks.
l (list the available partition types)
t (I think? I'm working from memory here)
    type the number "83" to set the partition to linux.
w  (writes the partition)

mkfs -t ext2 /dev/sdX1  # the drive letter and partition number of the flash disk

将磁盘拉出,将其插回并按照通常的方式安装。

答案2

您可以[根据需要安装并]用于在分区中gparted创建文件系统。ext2

sudo apt install gparted

gparted有一个图形用户界面并且非常直观,我想说它比 Disks alias 更容易使用gnome-disks

选择操作后,请单击勾号图标(创建分区、创建文件系统、添加标志和标签...)。

在此输入图像描述

答案3

您需要手动输入文件系统类型。

选择:自定义(输入文件系统类型),下文件系统类型ext2

相关内容