perlperl wrote:
> Has anyone seen "not enough space" error while executing command in
> perl scrip
> 
> $processid = open OUT, "$cmd  2>&1 |"   or die "$!" ;
> 
> is there any restriction on maximum number of process running on
> solaris?
> 
> 

The normal error message is, "too many processes"  This usually happens
when your sysadmin sets the process quota.  UNIX allows up to 32767
processes.  Normally only a few hundred are running at one time so it's
not likely to happen unless the quota has been set.

"not enough space" usually refers to disk space.  Try `df` and see if
one of your disks is near 100%


-- 
Just my 0.00000002 million dollars worth,
  Shawn

Programming is as much about organization and communication
as it is about coding.

I like Perl; it's the only language where you can bless your
thingy.

Eliminate software piracy:  use only FLOSS.

-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to