Mee*_*Mee 6 windows windows-server-2008
这应该很简单,但我无法弄清楚。我想获得一个分区的簇大小,例如 512、1024、2048 等等。我怎样才能得到这个?
在我的 Windows XP 上,我使用一个名为 TreeSize 的小实用程序来获取集群大小以及许多其他详细信息,我相信它也适用于 Windows 2008,但我无法相信没有实用程序就不可能。
非常感谢您的帮助
小智 19
使用以下命令:
fsutil fsinfo ntfsinfo c: (where c: is the volume/path to obtain the data for)
Run Code Online (Sandbox Code Playgroud)
这将向您展示以下内容:
NTFS Volume Serial Number : 0x9e800d87800d675d
Version : 3.1
Number Sectors : 0x000000000c7fffff
Total Clusters : 0x00000000018fffff
Free Clusters : 0x000000000091cfd1
Total Reserved : 0x00000000000001b0
Bytes Per Sector : 512
Bytes Per Cluster : 4096
Bytes Per FileRecord Segment : 1024
Clusters Per FileRecord Segment : 0
Mft Valid Data Length : 0x0000000009fc0000
Mft Start Lcn : 0x00000000000c0000
Mft2 Start Lcn : 0x0000000000c7ffff
Mft Zone Start : 0x00000000000c9ca0
Mft Zone End : 0x00000000000ca7e0
RM Identifier: 07A1930B-353D-11DE-AB63-E15CC5EE82D6
Run Code Online (Sandbox Code Playgroud)
您可以使用 diskpart 来执行此操作。这有点复杂,但它也会阻止您在服务器上放置另一个实用程序。
命令:
C:\>diskpart
DISKPART>list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
Disk 0 Online 232 GB 9 MB
Disk 1 Online 232 GB 1024 KB
DISKPART>Select disk 1
DISKPART> list partition
Partition ### Type Size Offset
------------- ---------------- ------- -------
Partition 1 Primary 232 GB 31 KB
DISKPART> select Partition 1
Partition 1 is now the selected partition.
DISKPART> FILESYSTEMS
Current File System
Type : NTFS
Allocation Unit Size : 4096
Flags : 00000000
File Systems Supported for Formatting
Type : NTFS (Default)
Allocation Unit Sizes: 512, 1024, 2048, 4096 (Default), 8192, 16K, 32K, 64K
DISKPART>
Run Code Online (Sandbox Code Playgroud)
您需要“分配单位大小”条目。
归档时间: |
|
查看次数: |
58868 次 |
最近记录: |