Clarify how one starts GNOME given all of its required dependent services.

Submitted by:	vs
This commit is contained in:
Joe Marcus Clarke 2007-09-20 16:20:53 +00:00
parent 22ccea0dc6
commit a2e54932a5
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=30814

View file

@ -1,6 +1,6 @@
<!DOCTYPE HTML PUBLIC "-//FreeBSD//DTD HTML 4.01 Transitional-Based Extension//EN" [
<!ENTITY base CDATA "../..">
<!ENTITY date "$FreeBSD: www/en/gnome/docs/faq2.sgml,v 1.125 2007/06/23 21:32:53 marcus Exp $">
<!ENTITY date "$FreeBSD: www/en/gnome/docs/faq2.sgml,v 1.126 2007/06/23 21:45:39 marcus Exp $">
<!ENTITY title "FreeBSD GNOME Project: GNOME &gnomever; FAQ">
<!ENTITY email "freebsd-gnome">
<!ENTITY % navinclude.gnome "INCLUDE">
@ -113,18 +113,9 @@ Note: links for existing questions should NEVER be changed.
# make install clean
</pre>
<p><u>Make GNOME &gnomever; start when X starts.</u></p>
<p>Once you have the GNOME &gnomever; desktop installed,
GNOME &gnomever; can be started by adding the following line
to <tt>~/.xsession</tt> or <tt>~/.xinitrc</tt>, as
appropriate:</p>
<pre>
exec gnome-session
</pre>
</li>
<p>You still need to <a href="#full-gnome">enable the
GNOME services</a> to run e.g. the graphical login
automatically on system startup.</p> </li>
<!-- Q Full-GNOME -->
<li style="padding-bottom: 0.5em"><a
@ -141,9 +132,28 @@ gnome_enable="YES"
</pre>
<p>This will enable services such as GDM, HAL, D-BUS, and
Avahi. If you do not want to run all of these services,
you should forgo the <em>gnome_enable</em> property, and
manually enable the services you want.</p>
Avahi on system startup. If you do not want to run all
of these services, you should forgo the
<em>gnome_enable</em> property, and manually enable the
services you want.</p>
<p>If you do not want to reboot immediately after the
installation, you can invoke
<tt>/usr/local/etc/rc.d/gdm start</tt> as root to
bring up the GNOME login screen (although this will not
start the other services).</p>
<p><u>Make GNOME &gnomever; start when X starts without
using GDM.</u></p>
<p>The GNOME &gnomever; desktop can also be started by
adding the following line to <tt>~/.xsession</tt> or
<tt>~/.xinitrc</tt>, as appropriate (see also
<tt>startx(1)</tt>):</p>
<pre>
exec gnome-session
</pre>
</li>
<!-- Q2 -->