如何使用 NTFS-3G 设置块大小

Jor*_*ter 2 debian ntfs

我最近想将块大小从 1 千字节增加到 16 千字节,所以我将其格式化为 16 KB。不幸的是,当我今天再次检查时,结果如下:

Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048   976769023   488383488    7  HPFS/NTFS/exFAT
Run Code Online (Sandbox Code Playgroud)

所以这意味着块大小仍然是 1024Bytes -> 1KB 对吗?

我现在如何在 linux 中增加它,因为格式化没有帮助..

希望能帮到你 :)

Sim*_*ski 5

fdisk 报告的块大小似乎不是 NTFS 群集大小。我会使用 ntfsinfo 来检查集群大小:

sudo ntfsinfo -m /dev/sdb1
Run Code Online (Sandbox Code Playgroud)