Website harddisk quota

Discussion in 'General' started by variable99, Mar 4, 2026.

  1. variable99

    variable99 Active Member

    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?
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    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.
     
    variable99 likes this.

Share This Page