我的系统中有两个硬盘,其中一个(磁盘 1)是 Windows 启动盘,另一个(磁盘 0)有一个分区(分区 1),我想用 NTFS 格式化。但是,磁盘管理不允许我这样做;该选项是灰色的。进入 diskpart 后,系统告诉我无法将分区格式化为 NTFS,因为没有选择卷。当我列出卷以查看要选择哪一个时,我发现没有一个是我想要格式化的。
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
Disk 0 Online 1863 GB 0 B *
Disk 1 Online 232 GB 35 GB <-- This is the boot disk
DISKPART> select disk 0
Disk 0 is now the selected disk.
DISKPART> list partition
Partition ### Type Size Offset
------------- ---------------- ------- -------
Partition 1 Unknown 500 GB 1024 KB <-- Format this one
Partition 2 Unknown 1363 GB 500 GB
DISKPART> select partition 1
Partition 1 is now the selected partition.
DISKPART> format fs=ntfs quick
There is no volume selected.
Please select a volume and try again.
DISKPART> list volume
Volume ### Ltr Label Fs Type Size Status Info
---------- --- ----------- ----- ---------- ------- --------- --------
Volume 0 System Rese NTFS Partition 350 MB Healthy System
Volume 1 C Root NTFS Partition 116 GB Healthy Boot
DISKPART> detail disk
ST2000DM001-1ER164
Disk ID: {DFD83667-1983-40B6-9EE3-03AFDD902518}
Type : SATA
Status : Online
Path : 1
Target : 0
LUN ID : 0
Location Path : PCIROOT(0)#PCI(1F02)#ATA(C01T00L00)
Current Read-only State : No
Read-only : No
Boot Disk : No
Pagefile Disk : No
Hibernation File Disk : No
Crashdump Disk : No
Clustered Disk : No
There are no volumes.
列出的卷均未达到 500 GB,这是我想要格式化的分区的大小。