当我使用 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
答案3
您需要手动输入文件系统类型。
选择:自定义(输入文件系统类型),下文件系统类型ext2