Operating System - HP-UX
1833240 Members
3413 Online
110051 Solutions
New Discussion

Re: ulimit !! FILE TIME etc.

 
SOLVED
Go to solution
rveri
Super Advisor

ulimit !! FILE TIME etc.

Hi Can any one explain and the ulimit -a output on hpux 11i , with regards to kernel parameter FILE TIME Memory etc..

# ulimit -a
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 1048576
stack(kbytes) 307200
memory(kbytes) unlimited
coredump(blocks) 4194303
nofiles(descriptors) 2048
#

Thank you,
Veri.

4 REPLIES 4
A. Clay Stephenson
Acclaimed Contributor

Re: ulimit !! FILE TIME etc.

Time - the maximum amount of CPU time a process is allowed before it is automatically terminated (not supported on all flavors of UNIX)
File - the maximum size a process is allowed to write to a file; reads are unrestricted.
Data --- maximum data segment size allowed per process
Stack --- Maximum program stack segment size allowed per process
Coredump -- maximum size of a core file
nofiles -- maximum per process no of file descriptors allowed to be simultaneously open

Man sh-posix and look for "ulimit".
If it ain't broke, I can fix that.
rveri
Super Advisor

Re: ulimit !! FILE TIME etc.

Thanks Stephen for the answer.
But u missed the "Memory " portion .

What is meant by "memory - unlimited"

Thanks ,

Veri.
rveri
Super Advisor

Re: ulimit !! FILE TIME etc.

Thanks Stephen for the answer.
But u missed the "Memory " portion .

What is meant by "memory - unlimited" ?

Thanks ,

Veri.
Peter Godron
Honored Contributor
Solution

Re: ulimit !! FILE TIME etc.

Veri,
have a look at:
http://www.unidata.ucar.edu/cgi-bin/man-cgi?ulimit+1
for list of details
Regards