Hi,
In most cases, space utilisation values returned from ‘df’ and ‘du’ will be consistent. However, the potential exists for a running process to delete a large file and according to ‘du’, the large file no longer exists, so the blocks associated with the deleted file are not reported. With the process still running, and with an open file descriptor still held against the deleted file, ‘df’ continues to track and report all disk blocks used, including those associated with the deleted (phantom) file. In this situation, the disk space associated with the deleted file will only be relinquished back to the system
when the process completely releases the deleted file’s descriptor or the process terminates (either gracefully or killed).
The solution is to identify and stop (or kill) the process that continues to hold a file descriptor open for the deleted file.
To do so, run the lsof command (/usr/sbin/lsof | grep deleted) as root to identify the holding process
For example:
# lsof | grep deleted
Kill the corresponding process which is holding your free blocks...
Thanks,
Nayab