I have a server with a 3TB disk attached. I want to reduce the reserved blocks using tune2fs. Reducing the default 5% to 1% allows me to get a lot of extra space.
Before applying in real server, I have tested in my test environment,
Before : /dev/sdb ext4 3.9G 8.0M 3.7G 1% /root/mount1
command: tune2fs -m.5 /dev/sdb
after: /dev/sdb ext4 3.9G 8.0M 3.7G 1% /root/mount1
As you can see, df -hT shows same size 3.9G. But reserved blocks are reduced when checked with tune2fs -l /dev/sdb. Why df is not taking new size?