Display filesystem's free space available to the root user

By using the command tune2fs (found in /sbin/tune2fs), you can easily determine the reserved space: (and more!)

tune2fs -l /dev/sda1

I'll provide my system's info for reference, I'm going to remove extraneous lines not important to this question:

The header... and volume name, I label all my drives, makes them easy to identify if needed.

tune2fs 1.42.4 (12-Jun-2012)
Filesystem volume name:   xenon
Last mounted on:          /
...

REALLY want this to say "clean" while the system is running. Honest!

Filesystem state:         clean

This is where the data storage capacity information begins:

Here you can see that I have 121,179,648 blocks total... with a block size of 4K (4096), that multiplies out to some big number (462-ish GB). (Block size is noted below)

Block count:              121179648

And the reserved blocks... by looking at the number above, and the number below.. you should be able to relatively quickly figure out I have 1% reserved. In this case (4.62-ish GB)

Reserved block count:     1211796

How much free space currently available? Right here!

Free blocks:              104090586
...

And the all important block size. Useful for multiplying.

Block size:               4096
...

These lines say WHO the blocks are reserved for... user 0, root, in this case

Reserved blocks uid:      0 (user root)
Reserved blocks gid:      0 (group root)
...

There's lots more information available here, but this should give you an ability to quickly ascertain how much is available, and how much more is reserved for root. Simple math.

Hope this helps. Remember...man pages are your friends.


I am not sure there is a tool built in, but assuming you have left the reserved at the default 5% then this will tell you:

df / | grep dev | cut -f 3,6 -d\  | awk '{print ($1*.05)+$2}'

df the root, grep for the line with dev in it (to remove the header), cut the size and available fields, then use an awk script to calculate 5% of the disk size added to the available.

You could pull the actual reservation from tune2fs -l <device> and combine this with the above in a script.


This displays free space in bytes in partition related to "/path"

printf '%s' $(($(stat -f --format='%f*%S' /path)))

You do not have to be superuser to run it.

BTW I do not quite understand what is the difference between

%s block size (for faster transfers)

%S fundamental block size (for block counts)

in usage of stat.