Disk Usage in Directadmin

j531168

Verified User
Joined
May 9, 2008
Messages
6
The "Disk Usage" shown in the DA system is never corrected.

How can I update the information?

I have tried

"echo 'action=tally&value=all' >> /usr/local/directadmin/data/task.queue"

and

"/sbin/quotaoff -a; /sbin/quotacheck -avugm; /sbin/quotaon -a;"

already.
 

Attachments

  • 123.jpg
    123.jpg
    11.9 KB · Views: 252
  • cd /usr/local
  • chown -R diradmin directadmin/
  • echo 'action=tally&value=all' >> /usr/local/directadmin/data/task.queue
 
I've tried

"/usr/sbin/repquota /home > /home/tmp/quota-dump"

but it said

"repquota: Mountpoint (or device) /home not found.
repquota: Not all specified mountpoints are using quota."
 
Please show the output of the command I show you then I will advice you.

Please note that I am not responsible if anything goes wrong with your server
 
I've tried

"/usr/sbin/repquota /home > /home/tmp/quota-dump"

but it said

"repquota: Mountpoint (or device) /home not found.
repquota: Not all specified mountpoints are using quota."

that will say, you do not have any partition mounted on /home
try to replace '/home' with '/'

do you have any tmp directory in de /home directory?
if not try to run:
Code:
mkdir /home/tmp
chmod 777 /home/tmp

when done rerun the tally...
 
that will say, you do not have any partition mounted on /home
try to replace '/home' with '/'

do you have any tmp directory in de /home directory?
if not try to run:
Code:
mkdir /home/tmp
chmod 777 /home/tmp

when done rerun the tally...

this time, I tired "/usr/sbin/repquota / > /home/tmp/quota-dump"

it'ok now. But what should I do next ?
 
repquota is only beeing used to show the usage / quota of a user, noting more.

Have you checked there is a tmp directory in the /home ?
 
The directory has to be world wide readable and writable (777).
Check if it is correct.

Also you didn't chow the output of the command:

"/usr/sbin/repquota /"
 
Back
Top