-1

How do you make NTFS file system with the cluster size of 512? Using only the command line?

1 Answers1

0

There are a few mkfs.* commands, including mkfs.ntfs to create partitions, they support a lot of options, take a look at their manpages.

To create a partition with cluster size of 512:

mkfs.ntfs -c 512 /dev/sdXX
Mahdi
  • 576