Path: utzoo!attcan!uunet!husc6!mailrus!ames!lll-lcc!mordor!joyce!wohler From: wohler@spam.istc.sri.com (Bill Wohler) Newsgroups: comp.windows.x Subject: Re: text: table is full Message-ID: <14218@joyce.istc.sri.com> Date: 14 Oct 88 05:19:14 GMT References: <8810041919.AA14373@work8.icase.edu> Sender: nobody@joyce.istc.sri.com Reply-To: wohler@spam.istc.sri.com (Bill Wohler) Organization: SRI International, Menlo Park CA Lines: 21 Tom Crockett writes: > ... SunOS, complaining about > > text: table is full > no biggie. surprisingly enough, the default sun text table does not take into account the space needed for the network (surprised you didn't hit this message before using X). rebuild your kernel, after adding the following to /sys/conf/param.c: #ifdef INET #define NETSLOP 40 #else #define NETSLOP 0 #endif int ntext = 24 + MAXUSERS + NETSLOP; --bw