From owner-freebsd-questions Mon Apr 15 20:24:11 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id UAA02548 for questions-outgoing; Mon, 15 Apr 1996 20:24:11 -0700 (PDT) Received: from seagull.rtd.com (root@seagull.rtd.com [198.102.68.2]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id UAA02495 for ; Mon, 15 Apr 1996 20:24:05 -0700 (PDT) Received: (from tony@localhost) by seagull.rtd.com (8.6.12/1.2) id UAA26441 for questions@freebsd.org; Mon, 15 Apr 1996 20:24:03 -0700 Date: Mon, 15 Apr 1996 20:24:03 -0700 From: Tony Jones Message-Id: <199604160324.UAA26441@seagull.rtd.com> To: questions@freebsd.org Subject: Re: FreeBSD & Netscape X-Newsreader: TIN [version 1.2 PL2] Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Doug White wrote: : > I want to use Netscape Navigator v2.01 with my FreeBSD v2.1.0 box. Has anyone : > successfully installed and run Netscape through XFree86 Xwindows? I was wondering : > where & how to set the $XKEYSYMDB environmental variable ( which is required if : > not running Motif )...??? : To fix the stupid XKeysymDB junk, symlink /usr/X11R6 to /usr/X11. Or just execute netscape with a modified environment. This is my /usr/local/bin/netscape tony #!/bin/sh LIB=/usr/local/lib/netscape XKEYSYMDB=$LIB/XKeysymDB export XKEYSYMDB XNLSPATH=$LIB/nls export XNLSPATH exec $LIB/netscape $* 2> /dev/null