From owner-freebsd-questions Wed Oct 29 19:01:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA07242 for questions-outgoing; Wed, 29 Oct 1997 19:01:44 -0800 (PST) (envelope-from owner-freebsd-questions) Received: from freebie.lemis.com (gregl1.lnk.telstra.net [139.130.136.133]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA07231 for ; Wed, 29 Oct 1997 19:01:38 -0800 (PST) (envelope-from grog@freebie.lemis.com) Received: (from grog@localhost) by freebie.lemis.com (8.8.7/8.8.5) id NAA00540; Thu, 30 Oct 1997 13:31:28 +1030 (CST) Message-ID: <19971030133127.59634@lemis.com> Date: Thu, 30 Oct 1997 13:31:27 +1030 From: Greg Lehey To: sporkl@dti.net Cc: freebsd questions Subject: Re: X problems References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.84e In-Reply-To: ; from sporkl on Wed, Oct 29, 1997 at 09:31:40PM +0000 Organisation: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 WWW-Home-Page: http://www.lemis.com/~grog Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, Oct 29, 1997 at 09:31:40PM +0000, sporkl wrote: > Hello. > > I have been attempting to configure X windows. I have an > ET4000/W32 video card, an SVGA monitor with an hsync of 35.5 Khz and a > vsync of 70 Khz. I have a plain old serial three-button mouse on serial > port one, ttyd0. > > I have configured X to run via the SVGA server, but it doesn't > work. It errors with: > > xf86OpenSyscons: Cannot open /dev/ttyvc (No such file or directory) > > > I don't have a ttyvc. Precisely. > As far as I can tell, it wants a thirteenth virtual terminal for my > twelve. I only have twelve function keys, and when I tried to > configure my kernel to accept thirteen virtual terminals it killed > all my ttyv* and I had to rebuild the kernel again. I am currently > reading all the X docs i can find on my system, and the Complete > FreeBSD X sections. Please send help! X needs a terminal to open the display on. Obviously all of yours have gettys on them, so ttyvc would be the first that it could use. Modify /etc/ttys to change this line: ttyv9 "/usr/libexec/getty Pc" cons25 off secure You'll have this set to 'on' in your machine; that's all you need to change. Then send a SIGHUP to init: # kill -1 1 After that, you should be in business. Your X server will be under F10. Greg