Re: wierd errors

2001-01-10 Thread Daniel O'Connor
On 11-Jan-01 Gregory Bond wrote: > > Can't you just increase the kern.maxproc sysctl? > Nope, it's readonly, because various kernel internal hash tables are sized on > it. See src/sys/kern/kern_{proc,resource,mib}.c Hmm.. I thought that was changed a while back but I guess not. --- Daniel O

Re: wierd errors

2001-01-10 Thread Gregory Bond
> hrmm, I tried that, same error (that was the first thing I tried actually) Hmm, it may be that the particular program you are building has some kind of error (in build scripts, or makefile, or whatever) that is causing an infinite loop somewhere. Examine the last N lines of output before the

Re: wierd errors

2001-01-10 Thread Gregory Bond
> Can't you just increase the kern.maxproc sysctl? Nope, it's readonly, because various kernel internal hash tables are sized on it. See src/sys/kern/kern_{proc,resource,mib}.c To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-stable" in the body of the message

Re: wierd errors

2001-01-10 Thread Daniel O'Connor
On 11-Jan-01 Kenneth Wayne Culver wrote: > hrmm, I tried that, same error (that was the first thing I tried actually) Can't you just increase the kern.maxproc sysctl? --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standard

Re: wierd errors

2001-01-10 Thread Kenneth Wayne Culver
hrmm, I tried that, same error (that was the first thing I tried actually) Ken = | Kenneth Culver | FreeBSD: The best NT upgrade| | Unix Systems Administrator | ICQ #: 24767726 | | and student at T

Re: wierd errors

2001-01-10 Thread Gregory Bond
> Jan 11 00:56:11 culverk /kernel: proc: table is full > Jan 11 00:56:14 culverk last message repeated 1022 times This says you have run out of process slots in the kernel - running too many jobs. Either run fewer processes (e.g. use "make -j4" rather than "make -j8") or build a new kernel wit

wierd errors

2001-01-10 Thread Kenneth Wayne Culver
I got this wierd error from trying to install the latest windowmaker port: Jan 11 00:56:11 culverk /kernel: proc: table is full Jan 11 00:56:14 culverk last message repeated 1022 times I know this isn't supposed to happen... and I've never seen it happen before... any ideas? Ken To Unsubscri