2

I’m using two hard drives for conducting monthly backup for certain data in my PC.

However, I found out the folder the backup data inside my second hard drive has larger size on disk compare to the data in my first hard drive. This causes my second hard drive rapidly running out of space.

I did some research, and it could be the different file system in both of the hard drives might be causing this?

Can anyone verify if I change the second hard drive’s file system and allocation unit to match my first hard drive will it resolve the high size on disk issue?

First HDD

  • File System: NFTS
  • Allocation Unit: 4096 B

Second HDD

  • File System: ExFAT
  • Allocation Unit: 128 KB

Example of size on disk gap

Screenshot.

sawdust
  • 18,591

2 Answers2

1

Unless it's a pretty large volume and you're running into limitations with exFAT there shouldn't really be any reason to go for 128 kB allocation units.

With your current setup 1 kB file on your primary system is going to take about 4 kB at a minimum and on you backup disk 128 kB. If you do deal with a lot of smaller files this would explain the significant overhead.

Bringing them inline should reduce the on disk usage. In addition you might want to think about your chosen filesystem. Unless you have a particular need for it there shouldn't be a reason to use exFAT on your backup disk. Even most modern Linux distributions can at least read NTFS.

By design exFAT is more vulnerable to corruption than NTFS or other filesystems that offer journaling and e.g. redundancy of especially important information that's needed to use the system. As such using exFAT for your backup drive might not be the best idea.

Seth
  • 9,393
1

Just look at the image you provided. On the right it says 41.9gb of space and right below that it says 41.9gb of files is using 65.2gb of hard drive.

The drive on the left is only using 42.4gb for the same files.

Therefore you are wasting 22.8gb of hard drive.

While an extra 22gb is a moderate amount even if you have a 128gb hard drive you should still have a lot of space.

So unless your using a 64gb hard drive or smaller I would not classify 22gb as "filling up your hard drive"

In short, by changing to a 4kb allocation unit you will get 22gb back. So if your expecting to gain 100gb in free space your out of luck, but if your expect 22gb back then your correct.

cybernard
  • 14,924