My system memory was almost full as seen by DF command
# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 40G 38G 268M 100% /
udev 2.0G 84K 2.0G 1% /dev
When I checked I saw one directory consuming 7 GB.
# du -sh /home/testuser/ccmData/
7.0G /home/testuser/ccmData/
I logged in as "testuser" and freed most of the contents by "rm -rf command" and now only 200 MB data is left.
# du -sh /home/testuser/ccmData/*
199M /home/testuser/ccmData/neo
4.0K /home/testuser/ccmData/leo
But the freed memory is not reflected
But du and df commands are still does not reflect the freed 6 .8 GB of memory.
# du -sh /home/testuser/ccmData/
7.0G /home/testuser/ccmData/
# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 40G 38G 268M 100% /
udev 2.0G 84K 2.0G 1% /dev
I tried rebooting the system but no benefit.
What might be the cause of this?