Operating System - HP-UX
1820658 Members
2354 Online
109626 Solutions
New Discussion юеВ

Re: i am getting error: Disk quota exceeded

 
SOLVED
Go to solution
praveen..
Super Advisor

i am getting error: Disk quota exceeded

Hi,
my one server (snap drive) directory 170.120.6.158:/Temp is mounted on Unix server's directory /apps/data/cleanup.

#bdf | grep cleanup
170.120.6.158:/Temp 897449984 501597696 395852288 56% /apps/data/cleanup

It (170.120.6.158:/Temp) has still 18GB free space from its quota.


I am getting the following error while trying to uncompress a file. As you can see there is plenty of space on this partition. Please let me know how I can uncompress the file.



[praveen@server:/apps/LoyAn/cleanup/praveen]

$ uncompress SSGL.QUARTERLY.WH_20051009_20051231.BIN.Z

SSGL.QUARTERLY.WH_20051009_20051231.BIN: Disk quota exceeded




[praveen@server:/apps/LoyAn/cleanup/praveen]

$ ls -l

total 21581032

drwxrwxrwx 2 daemon loyan 4096 Feb 17 02:27 Dpim

drwxrwxrwx 2 daemon loyan 6 Feb 6 14:55 Facit

drwxr-x--- 5 smbnull users 39 Apr 11 15:45 SS

-rwxr-x--- 1 praveen apps 11049477649 Jun 6 09:35 SSGL.QUARTERLY.WH_20051009_20051231.BIN.Z


please suggest what to do?
thanks
14 REPLIES 14
praveen..
Super Advisor

Re: i am getting error: Disk quota exceeded

sorry this is the directory path:

I am getting the following error while trying to uncompress a file. As you can see there is plenty of space on this partition. Please let me know how I can uncompress the file.



[praveen@server:/apps/data/cleanup/praveen]

$ uncompress SSGL.QUARTERLY.WH_20051009_20051231.BIN.Z

SSGL.QUARTERLY.WH_20051009_20051231.BIN: Disk quota exceeded




[praveen@server:/apps/data/cleanup/praveen]

$ ls -l

total 21581032

drwxrwxrwx 2 daemon loyan 4096 Feb 17 02:27 Dpim

drwxrwxrwx 2 daemon loyan 6 Feb 6 14:55 Facit

drwxr-x--- 5 smbnull users 39 Apr 11 15:45 SS

-rwxr-x--- 1 praveen apps 11049477649 Jun 6 09:35 SSGL.QUARTERLY.WH_20051009_20051231.BIN.Z


please suggest what to do?
thanks
Peter Godron
Honored Contributor

Re: i am getting error: Disk quota exceeded

Praveen,
have you got quota system enabled, which may limit you to a certain amount of disk space.
Robert-Jan Goossens_1
Honored Contributor

Re: i am getting error: Disk quota exceeded

could you post the output of

# quota -v

Robert-Jan
praveen..
Super Advisor

Re: i am getting error: Disk quota exceeded

with root login:

# quota -v
no disk quota for uid 0
#

i dont know: have I got quota system enabled?

if it needed, then please how to check?
Robert-Jan Goossens_1
Honored Contributor

Re: i am getting error: Disk quota exceeded

does praveen have a quota set ?

# quota -v praveen
praveen..
Super Advisor

Re: i am getting error: Disk quota exceeded

# quota -v praveen
Disk quotas for praveen (uid 998):
Filesystem usage quota limit timeleft files quota limit timeleft
#

Arunvijai_4
Honored Contributor
Solution

Re: i am getting error: Disk quota exceeded

Hi Praveen,

Disable quota for user praveen,

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
praveen..
Super Advisor

Re: i am getting error: Disk quota exceeded

how to disable it ?
Arunvijai_4
Honored Contributor

Re: i am getting error: Disk quota exceeded

Hi Praveen,

Use # quotaoff [-v] filesys ...

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
praveen..
Super Advisor

Re: i am getting error: Disk quota exceeded

should i give this command:

#quotaoff -v /apps/LoyAn/cleanup

please suggest
praveen..
Super Advisor

Re: i am getting error: Disk quota exceeded

should i give this command:

#quotaoff -v /apps/LoyAn/cleanup

please suggest!!

Thanks
Michael Steele_2
Honored Contributor

Re: i am getting error: Disk quota exceeded

Your syntax is correct. 'quotaoff' link is pasted below.

http://docs.hp.com/en/B2355-60103/quotaon.1M.html

(Note: Its use is not recommended.)

Do you have another working directory to offload the file?
Support Fatherhood - Stop Family Law
Michael Steele_2
Honored Contributor

Re: i am getting error: Disk quota exceeded

Came across this today in some old notes and thought of you mon ami.

1) # chmod -x /usr/bin/quota
This prevents quota from running. It's also a self documenting flag
in that a future system manager who tries to run /etc/quota will get
the "can not execute" error message.

2) # chmod -x /usr/bin/quote /etc/edquota
This appears to turn quota's completely off (which is what I
suspect the vast majority of people want) and not only speeds
up the login process, but you don't get any annoying messages.

3) # mv /usr/bin/quota /usr/bin/quota_check ; cp /bin/true /usr/bin/quota
This will still make the login program do the quota-check, but at
least
it goes by very very quickly now (as opposed to actualy checking every
single NFS mount with quota, and so on). Then, just run quota_check
whenever you want.


Note: Is your system trusted?
Support Fatherhood - Stop Family Law
praveen..
Super Advisor

Re: i am getting error: Disk quota exceeded

now i am able to uncompress that file