I observe very interesting missmatch between harddisk quota reported in ISPC database (which are correct according to repquota -a), but not simple du command. Example: Code: repquota -as Output: Code: web1213 -- 106M 250M 251M 3519 0 0 Code: du -k ./* | sort -nr | cut -f2 | xargs -d '\n' du -sh | less Output: Code: 80M ./web 1.1M ./log 12K ./ssl 4.0K ./webdav 4.0K ./tmp 4.0K ./private 4.0K ./cgi-bin 4.0K ./backup There is no backups, databases, email accounts, hidden folders/files. What else could take space?
Du and repquota do very different things; repquota reports all files owned by a certain user, while di reports all files in a certain directory. if they do not match, then the reason is either that you have files owned by the same user in a different folder. Or you have files owned by another user in the directory you checked with du command.