[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: AW: AW: [cobalt-users] [RAQ4] Odd Quota Issue on user admin[SCANNED]



>
> I get this back, not sure how to read it,
>
> [root /root]# repquota /home | grep admin
> admin     --    6747       0       0           1547     0     0

It means you have no limits set for user admin. 
Limits are per-user on a filesystem. 
Your filesystems are listed in /etc/fstab. 

/home/packages is not there, cause it's on /home ;-) 

I think 'man reqouta' will tell you more.
Anyways, you have to see what 
repquota /home tells you.

quotacheck /home 
output may also be useful.

As temporal solution, you can rename your /home/packages directory and 
make this directory in admin's home directory and just set up a 
symlink: 

mv /home/packages /home/packages.old
mkdir ~admin/packages
ln -s ~admin/packages /home/packages

then just copy evrything you have there: 

cp -R /home/packages.old/* /home/packages

you can use 'mv' to move files... 

WBR,
Dmitry

> If I run this
> [root /root]# repquota /home/packages | grep admin
> /home/packages not found in fstab
>
> Does that mean anything?
>
> Thanks