Changeset d718dddd


Ignore:
Timestamp:
11/24/2002 09:12:08 PM (21 years ago)
Author:
Larry Lawrence <larry@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v1_0, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
b6c918a
Parents:
e70a415
Message:

rollback to bonobo-activation-1.0.3 and initial draft of gdm's expanded configuration

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@412 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • gnome/lib/bonobo/bonobo-activation.ent

    re70a415 rd718dddd  
    66<!ENTITY bonobo-activation-config SYSTEM "bonobo-activation-config.xml">
    77<!ENTITY bonobo-activation-buildsize "5 MB">
    8 <!ENTITY bonobo-activation-version "1.0.4">
    9 <!ENTITY bonobo-activation-download-http "http://ftp.gnome.org/pub/GNOME/sources/bonobo-activation/1.0/bonobo-activation-1.0.4.tar.bz2">
    10 <!ENTITY bonobo-activation-download-ftp "ftp://ftp.gnome.org/pub/GNOME/sources/bonobo-activation/1.0/bonobo-activation-1.0.4.tar.bz2">
     8<!ENTITY bonobo-activation-version "1.0.3">
     9<!ENTITY bonobo-activation-download-http "http://ftp.gnome.org/pub/GNOME/sources/bonobo-activation/1.0/bonobo-activation-1.0.3.tar.bz2">
     10<!ENTITY bonobo-activation-download-ftp "ftp://ftp.gnome.org/pub/GNOME/sources/bonobo-activation/1.0/bonobo-activation-1.0.3.tar.bz2">
    1111<!ENTITY bonobo-activation-size "448 KB">
  • gnome/other/gdm/gdm-config.xml

    re70a415 rd718dddd  
    99
    1010<para>The gdm PAM config files contain modules not present in a BLFS
    11 installation, therefore:</para>
     11installation.  The following commands will replace those files:</para>
    1212<screen><userinput>cat &gt; /etc/pam.d/gdm &lt;&lt; "EOF"</userinput>
    1313auth        required    pam_unix.so
     
    2626<userinput>EOF</userinput></screen>
    2727
    28 <para>gpm can be tested by executing it from a root console.</para>
     28<para>gdm can be tested by executing it from a root console.</para>
    2929
    30 <para>To complete the installation of gpm, you need to create an
    31 appropriate init.d script and place it in the
    32 <filename>/etc/rc.d/init.d</filename> directory, create the S and K
    33 files for the appropriate run level(s) and change the default runlevel in
    34 <filename>/etc/inittab</filename>.</para>
     30<para>To automate the running of gdm, use the following command to
     31create the init.d script:
     32<screen><userinput>cat &gt; /etc/rc.d/init.d/gdm &lt;&lt; "EOF"</userinput>
     33#!/bin/bash
     34# Begin $rc_base/init.d/gdm
    3535
    36 <para><emphasis>If the above instructions seem vague to you, why are you
    37 installing this package?</emphasis></para>
     36# Based on sysklogd script from LFS-3.1 and earlier.
     37# Rewritten by Gerard Beekmans  - gerard@linuxfromscratch.org
     38
     39source /etc/sysconfig/rc
     40source $rc_functions
     41
     42case "$1" in
     43        start)
     44                echo "Starting gdm..."
     45                loadproc gdm
     46                ;;
     47
     48        stop)
     49                echo "Stopping gdm..."
     50                killproc gdm
     51                ;;
     52
     53        reload)
     54                echo "Reloading gdm..."
     55                reloadproc gdm
     56                ;;
     57
     58        restart)
     59                $0 stop
     60                sleep 1
     61                $0 start
     62                ;;
     63
     64        status)
     65                statusproc gdm
     66                ;;
     67
     68        *)
     69                echo "Usage: $0 {start|stop|reload|restart|status}"
     70                exit 1
     71                ;;
     72esac
     73
     74# End $rc_base/init.d/gdm
     75<userinput>EOM
     76chmod 755 /etc/rc.d/init.d/gdm</userinput></screen></para>
     77
     78<para>Create the symbolic links to this file in the relevant rc.d
     79directory with the following commands:
     80<screen><userinput>cd /etc/rc.d/init.d &amp;&amp;
     81ln -sf ../init.d/gdm ../rc0.d/K05gdm &amp;&amp;
     82ln -sf ../init.d/gdm ../rc1.d/K05gdm &amp;&amp;
     83ln -sf ../init.d/gdm ../rc2.d/K05gdm &amp;&amp;
     84ln -sf ../init.d/gdm ../rc3.d/K05gdm &amp;&amp;
     85ln -sf ../init.d/gdm ../rc4.d/K05gdm &amp;&amp;
     86ln -sf ../init.d/gdm ../rc5.d/S95gdm &amp;&amp;
     87ln -sf ../init.d/gdm ../rc6.d/K05gdm</userinput></screen></para>
     88
     89<para>To autostart with a graphical login, edit
     90<filename>/etc/inittab</filename> so that the line reading
     91<screen>id:3:initdefault:</screen>
     92is changed to
     93<screen>id:5:initdefault:</screen></para>
    3894
    3995</sect3>
  • introduction/welcome/changelog.xml

    re70a415 rd718dddd  
    1010
    1111<itemizedlist>
     12
     13<listitem><para>November 24th, 2002 [larry]: Gnome: Roll back to
     14bonobo-activation-1.0.3.</para></listitem>
    1215
    1316<listitem><para>November 24th, 2002 [larry]: Gnome: Update to
Note: See TracChangeset for help on using the changeset viewer.