1

Why are the free space and available space for the / and /home partitions not the same in system monitor? But the two are the same for the other two partitions?

In particular, my / and /home partitions are running low, and I wonder why I can't use all the free space.

Thanks.

enter image description here

Tim
  • 25,177

2 Answers2

3

After some googling I found this post on Launchpad stating the following (first comment):

The ext3 filesystem reserves an amount of the total space for root. If some user (or daemon) fills the disk then a login couldn't be possible anymore. So even root couldn't login anymore to fix it. Therefore ext3 reserves an amount of 5% (default) of the filesystem for the root user to prevent it (it doesn't work if root fills the disk).

Available space is now the total free space including the reserved space for root. Free space is the free space that you as a user can fill :)

It is possible to change this with tune2fs (PLEASE consult the manpage before using this tool).

Justgivemeaname
  • 258
  • 1
  • 2
  • 11
2

According to this page, the system reserves 5% for root. For / in your screenshot, 5% of 20.2 GiB is 1.01 GiB, which is about the discrepancy.

Sparhawk
  • 6,929
  • Same thing for /home. 5% of 26.9 is 1.345, which works out about right. Now, I'm hoping you don't ask me about the other two partitions. :) (I think root might only limit it for Linux file systems.) – Sparhawk Oct 18 '14 at 01:21