See inconsistency in disk usage value between df & du unix command output on mount-drive.
Here is sample result from df -k command output on a mount point.
df -k /mount/point | awk '{print $3}'
Used
245661696
If we calculate K block to bytes then its : 245661696 * 1024 = 251557576704
Here is sample result from du command output on a mount point main directory (mount point itself)
du -b --max-depth=0 /mount/point
375628722011
du output : 375628722011 which is almost 124GB extra when compared with df output!
Am I missing something. Some real time result from du will always be different?