View Single Post
  #3   (View Single Post)  
Old 16th September 2009
jaideep_jdof jaideep_jdof is offline
Port Guard
 
Join Date: Nov 2008
Posts: 45
Default

I have every thing configured according to /usr/pkgsrc/meta-pkgs/gnome/MESSAGE:

Code:
===========================================================================
$NetBSD: MESSAGE,v 1.6 2009/03/17 14:46:39 jmcneill Exp $

In order to get the GNOME Desktop running properly, you need to follow
these manual steps:

1) Enable the File Alteration Monitor.  See 'pkg_info -D fam' for more
   information.  If you chose to use gamin instead of fam, you do not need
   to take this step.

2) Enable the system dbus daemon.  In order to do that, copy the
   ${PREFIX}/share/examples/rc.d/dbus script to /etc/rc.d and add
   dbus=YES to your /etc/rc.conf file.

3) Enable the hal daemon if GNOME has been built with the hal option (the
   default).  In order to do that, copy the ${PREFIX}/share/examples/rc.d/hal
   script to /etc/rc.d and set hal=YES in your /etc/rc.conf file.

4) Enable the cups daemon if you installed it.  In order to do that, copy
   the ${PREFIX}/share/examples/rc.d/{cupsd,slpd} scripts to /etc/rc.d and
   set cupsd=YES and slpd=NO in your /etc/rc.conf file.

5) Set up the gnome-screensaver PAM service by creating the
   /etc/pam.d/gnome-screensaver file.  You can use one of the files
   in ${PREFIX}/share/examples/gnome-screensaver/pam.d as templates.

6) Optionally enable the Avahi DNS Service Discovery service if you
   installed it.  In order to do that, copy the
   ${PREFIX}/share/examples/rc.d/avahidaemon script to /etc/rc.d and set
   avahidaemon=YES in your /etc/rc.conf file.

7) Optionally enable GDM (highly recommended).  Just copy the
   ${PREFIX}/share/examples/rc.d/gdm script to /etc/rc.d and add
   gdm=YES to your /etc/rc.conf file.

===========================================================================
my rc.conf:
Code:
#	$NetBSD: rc.conf,v 1.96 2000/10/14 17:01:29 wiz Exp $
#
# see rc.conf(5) for more information.
#
# Use program=YES to enable program, NO to disable it. program_flags are
# passed to the program on the command line.
#

# Load the defaults in from /etc/defaults/rc.conf (if it's readable).
# These can be overridden below.
#
if [ -r /etc/defaults/rc.conf ]; then
	. /etc/defaults/rc.conf
fi

# If this is not set to YES, the system will drop into single-user mode.
#
rc_configured=YES

# Add local overrides below
#
wscons=YES
hostname="devils-workshop"
ifconfig_bge0=dhcp
powerd=YES
estd=YES
estd_flags="-d -s -m 800 -M 1867"
dbus=YES
hal=YES
rpcbind=YES
avahidaemon=YES
gdm=YES
Reply With Quote