From owner-freebsd-questions Thu Jul 31 17:45:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA14038 for questions-outgoing; Thu, 31 Jul 1997 17:45:07 -0700 (PDT) Received: from genesis.atrad.adelaide.edu.au (genesis.atrad.adelaide.edu.au [129.127.96.120]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA14025 for ; Thu, 31 Jul 1997 17:44:59 -0700 (PDT) Received: from freebie.lemis.com (gregl1.lnk.telstra.net [139.130.136.133]) by genesis.atrad.adelaide.edu.au (8.8.5/8.7.3) with ESMTP id KAA00821; Fri, 1 Aug 1997 10:14:39 +0930 (CST) From: Greg Lehey Received: (grog@localhost) by freebie.lemis.com (8.8.6/8.6.12) id KAA07984; Fri, 1 Aug 1997 10:14:32 +0930 (CST) Message-Id: <199708010044.KAA07984@freebie.lemis.com> Subject: Re: Xinit: Wierd errors In-Reply-To: from Elisabeth Arnold at "Jul 31, 97 04:47:19 pm" To: beth@alpha.gte.net (Elisabeth Arnold) Date: Fri, 1 Aug 1997 10:14:31 +0930 (CST) Cc: questions@FreeBSD.org (FreeBSD Questions) Organisation: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8250 Fax: +61-8-8388-8250 Mobile: +61-41-739-7062 WWW-Home-Page: http://www.lemis.com/~grog X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Elisabeth Arnold writes: > When attempting to run xinit I get many strange errors. It says things > like: > > XF98_GANBWAP/o (character like an equal sign, but with 3 -'s) (diamond > shape): not found Is the text *really* XF98_GANBWAP/o? > This continues with strange symbols and not found messages. Then the > message: "/usr/X11R6/bin: 50: Syntax error: EOF in backquote substitution" Is /usr/X11R6/bin a directory? This looks like the system is trying to interpret some binary as a shell script--usually a sign that it doesn't recognize the binary format. > The message "_X11TransSocketUNIXConnect: Can't connect: errno = 2" > repeats 6 times followed "giving up." That's almost normal. > xinit: Interupted system call (errno4): unable to connect to X server > xinit: No such process (errno 3): Server error. At a guess, you have severe data corruption or an incorrect architecture somewhere, probably in whatever you're trying to use as an X server. Check: 1. /usr/X11R6/bin/X. This is usually a symlink: $ ls -l /usr/X11R6/bin/X lrwxr-xr-x 1 root bin 9 Feb 6 07:55 /usr/X11R6/bin/X -> XF86_SVGA 2. What it's pointing to: $ ls -lL /usr/X11R6/bin/XF86_SVGA -rwsr-xr-x 1 root bin 2811834 May 8 1995 /usr/X11R6/bin/XF86_SVGA 3. What file type it is: $ file /usr/X11R6/bin/XF86_SVGA /usr/X11R6/bin/XF86_SVGA: setuid FreeBSD/i386 demand paged dynamically linked executable not stripped Note that you'll have to give the real name of the program in this case. I suspect that (3) will give you some other result. Let me know how this works. Greg