Newly formatted (NTFS) external hard drive already has 'Used space'. What determines the used space's amount? Is it correlated to the HD's capacity?

Solution 1:

tl;dr: This is space reserved for metadata storage.

This article about NTFS technical side will give you some more details, but most of this space is taken by the Master File Table. (Some space is also used for the boot sectors, and so on.)

What explains a good part of the "bloated" metadata in NTFS compared to, say, FAT32 is the need to store Access Control Lists - although there are more things in there.

How much space is used by the MFT?

There are 4 settings available when you format a hard disk in NTFS:

  • Setting 1 reserves approximately 12.5 % of the volume. (Default)
  • Setting 2 reserves approximately 25 %.
  • Setting 3 reserves approximately 37.5 %.
  • Setting 4 reserves approximately 50 %.

This is because the MFT size is proportional to your number of files. A standard (12.5 %) MFT size will be enough to provide metadata space for all your files if you fill the rest of your disk with 8 KB files. Of course, since some files are going to be much bigger, this is an average.

If you store a large number of smaller files to your disk, there won't be enough space to accommodate all their metadata in the reserved MFT space. This is not fatal, as a new MFT cluster will simply be created elsewhere. However, it will cause MFT data fragmentation, which is bad, as in, can cause severe performance degradation in some cases.