From owner-freebsd-questions Wed Mar 26 07:36:33 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA16398 for questions-outgoing; Wed, 26 Mar 1997 07:36:33 -0800 (PST) Received: from gatekeeper.barcode.co.il (gatekeeper.barcode.co.il [192.116.93.17]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA16386 for ; Wed, 26 Mar 1997 07:36:25 -0800 (PST) Received: (from nadav@localhost) by gatekeeper.barcode.co.il (8.7.5/8.6.12) id SAA08673; Wed, 26 Mar 1997 18:35:10 +0300 (IDT) Date: Wed, 26 Mar 1997 18:35:10 +0300 (IDT) From: Nadav Eiron To: "Miller, Paul SGT" cc: "'FreeBSD Questions'" Subject: Re: XKeysymDB In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 26 Mar 1997, Miller, Paul SGT wrote: > I am having difficulties with XKeysymDB either being located or I need a > newer version of the file. I'm running netscape v3.01 (the only version > available for UNIX). I have place XKeysymDB in all the necessary > directories. It seems to still have trouble. I am hoping someone would > be willing to help out a joe (military). Is there another fix? > > Paul Miller > SGT, US > Net Admin > > Make sure that the correct environment variables are defined when running netscape. The easiest would be to replace it with a shell script like: #!/bin/csh # Setenv for Netscape key bindings. setenv XKEYSYMDB /usr/X11R6/lib/X11/XKeysymDB setenv XNLSPATH /usr/X11R6/lib/X11/nls/ setenv XAPPLRESDIR /usr/X11R6/lib/X11/app-defaults netscape.bin -geometry 670x700+1024+0 & (that's after renaming netscape to netscape.bin and using csh, make your own adaptations as needed). Note that all those defined files/directories should first be prepared as per the Netscape README file. Good luck, Nadav