我尝试清除我的 NTFS Windows 硬盘,以完成向 Ubuntu 的传输。但是,使用 ntfs-3g 命令导致:
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount, '/dev/sda2' : Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option
请记住,我不想只读,我想将其擦除干净并将其用于存储。
答案1
您无需安装此驱动器即可将其格式化(将其清除)并开始将其用作存储设备。要格式化它,请在磁盘实用程序中找到它,选择它,单击齿轮图标,然后选择格式化。然后按照提示操作。
您还可以使用 来从终端使用您选择的文件系统对其进行格式化mkfs.<fstype>
。例如,要使用 ext4 文件系统格式化磁盘,请运行:
sudo mkfs.ext4 /dev/sdb1
当然,假设这sdb1
就是您要擦除的分区。