I have a file for which
du -b filename
gives 67108864
as the answer (which is supposed to be in bytes),
while
du filename
gives 65604
(which is supposed to be in kilobytes).
However, it should return 67108864/1024 = 65536
as the answer.
I looked at the man entry for du
, but couldn't find the answer.
What am I missing?
I'm running Ubuntu version 12.04 on a 64 bit machine.