Please post
Code:
sudo tune2fs -l /dev/sda2
From the tune2fs man page:
Code:
-m reserved-blocks-percentage
Set the percentage of the filesystem which may only be allocated by priv‐
ileged processes. Reserving some number of filesystem blocks for use by
privileged processes is done to avoid filesystem fragmentation, and to
allow system daemons, such as syslogd(8), to continue to function cor‐
rectly after non-privileged processes are prevented from writing to the
filesystem. Normally, the default percentage of reserved blocks is 5%.
I think it is a little silly that the percentage is set at 5% since 5% could be measly on a small disk and ridiculously large on a huge disk. On your 234GB disk, 5% would be almost 12GB for stuff like syslogd. (Run `du -sh /var/log` to see how big /var/log is. syslogd writes there.) I'm no expert, but 12GB seems excessive to me.
If you want to reduce the amount of reserved space to say 1%, you can run
Code:
sudo tune2fs -m1 /dev/sda2
Bookmarks