Ubuntu – get more free space than ext4 after formatting in XFS

ext4filesystemxfs

I've bought a 1TB external hard drive and after formatting the entire drive in ext4
Nautilus says there are 934.3 GB of free space. enter image description here

I've also tested formatting the drive in XFS, and in this case there are 999.7 GB of free space.enter image description here

Why more than 60 GB are missing from free space with ext4 and not with XFS ?

Best Answer

EXT3/EXT4 filesystems take 5% of partition size for security etc. (e.g. in "non free disk space disk" cause).

If it isn't root partition, You could change this 5% to e.g. 1% by doing:

sudo tune2fs -m 1 /dev/sda3

where you should change sda3 to your partition.

Related Question