Disk usage does not display correctly

ISOS6

Verified User
Joined
May 7, 2009
Messages
322
Location
Erbil, Tarin Hills, Iraq
Hello,


Disk usage does not display correctly, one of the users has around 50MB on the server shows only 1.08MB. It is the same for all, that is, it shows much less than actual consumption.

What causes it? I have tried to upload several large files on one of the waiting, but still displays the same. Clicked the "Update disk usage", but no effects :rolleyes:
 
Tried

/usr/sbin/repquota /home
/usr/sbin/repquota / (in my directadmin.conf quota_partition=/)
/usr/sbin/repquota /usr

Got this error;

repquota: Mountpoint (or device) / not found or has no quota enabled.
repquota: Not all specified mountpoints are using quota.

And here is my /etc/fstab

# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/md0 / ext3 errors=remount-ro 0 1
/dev/sda2 none swap sw 0 0
/dev/hda /media/cdrom0 udf,iso9660 user,noauto 0 0

Where should I add usrquota,grpquota?
 
Last edited:
Change it to (for example, it it is linux):
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/md0 / ext3 errors=remount-ro,usrquota,grpquota 0 1
/dev/sda2 none swap sw 0 0
/dev/hda /media/cdrom0 udf,iso9660 user,noauto 0 0
 
Back
Top