From owner-freebsd-questions Fri Mar 15 1:10:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from shumai.marcuscom.com (rdu57-28-046.nc.rr.com [66.57.28.46]) by hub.freebsd.org (Postfix) with ESMTP id 9988037B400 for ; Fri, 15 Mar 2002 01:10:26 -0800 (PST) Received: from localhost (marcus@localhost) by shumai.marcuscom.com (8.11.6/8.11.6) with ESMTP id g2F9AfW81866; Fri, 15 Mar 2002 04:10:42 -0500 (EST) (envelope-from marcus@marcuscom.com) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 15 Mar 2002 04:10:41 -0500 (EST) From: Joe Clarke To: Mike Stacy Cc: FreeBSD-questions Subject: Re: GNOME In-Reply-To: <001401c1cbd2$dec97580$0301a8c0@480mhz> Message-ID: <20020315040531.I81782-100000@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 14 Mar 2002, Mike Stacy wrote: > I just finished installing GNOME on my FreeBSD box, then when I startx > everything is the same.....I followed the handbook, and also typed this in > "echo "/usr/X11R6/bin/gnome-session" > ~/.xinitrc" how can I make GNOME come > up or make it come up........ > If you use startx to get X going, adding the following to ~/.xinitrc will work: #!/bin/sh exec /usr/X11R6/bin/gnome-session Make sure you chmod +x this file to get it working. If you're like me, and you use gdm, then I recommend you create a startup script in /usr/X11R6/etc/rc.d called xserver.sh: #!/bin/sh PREFIX=/usr/X11R6 case "$1" in start) ${PREFIX}/bin/gdm ;; stop) /usr/bin/killall gdm 2>/dev/null ;; *) echo "$0 start | stop" ;; esac Yes, you can also modify /etc/ttys to accomplish the same thing, but I prefer this method. Joe > > > > -Mike > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message