Changeset d718dddd
- Timestamp:
- 11/24/2002 09:12:08 PM (21 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 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, ken/inkscape-core-mods, krejzi/svn, lazarus, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, v1_0, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- b6c918a
- Parents:
- e70a415
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
gnome/lib/bonobo/bonobo-activation.ent
re70a415 rd718dddd 6 6 <!ENTITY bonobo-activation-config SYSTEM "bonobo-activation-config.xml"> 7 7 <!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"> 11 11 <!ENTITY bonobo-activation-size "448 KB"> -
gnome/other/gdm/gdm-config.xml
re70a415 rd718dddd 9 9 10 10 <para>The gdm PAM config files contain modules not present in a BLFS 11 installation , therefore:</para>11 installation. The following commands will replace those files:</para> 12 12 <screen><userinput>cat > /etc/pam.d/gdm << "EOF"</userinput> 13 13 auth required pam_unix.so … … 26 26 <userinput>EOF</userinput></screen> 27 27 28 <para>g pm 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> 29 29 30 <para>To complete the installation of gpm, you need to create an31 appropriate init.d script and place it in the 32 < filename>/etc/rc.d/init.d</filename> directory, create the S and K33 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 31 create the init.d script: 32 <screen><userinput>cat > /etc/rc.d/init.d/gdm << "EOF"</userinput> 33 #!/bin/bash 34 # Begin $rc_base/init.d/gdm 35 35 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 39 source /etc/sysconfig/rc 40 source $rc_functions 41 42 case "$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 ;; 72 esac 73 74 # End $rc_base/init.d/gdm 75 <userinput>EOM 76 chmod 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 79 directory with the following commands: 80 <screen><userinput>cd /etc/rc.d/init.d && 81 ln -sf ../init.d/gdm ../rc0.d/K05gdm && 82 ln -sf ../init.d/gdm ../rc1.d/K05gdm && 83 ln -sf ../init.d/gdm ../rc2.d/K05gdm && 84 ln -sf ../init.d/gdm ../rc3.d/K05gdm && 85 ln -sf ../init.d/gdm ../rc4.d/K05gdm && 86 ln -sf ../init.d/gdm ../rc5.d/S95gdm && 87 ln -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> 92 is changed to 93 <screen>id:5:initdefault:</screen></para> 38 94 39 95 </sect3> -
introduction/welcome/changelog.xml
re70a415 rd718dddd 10 10 11 11 <itemizedlist> 12 13 <listitem><para>November 24th, 2002 [larry]: Gnome: Roll back to 14 bonobo-activation-1.0.3.</para></listitem> 12 15 13 16 <listitem><para>November 24th, 2002 [larry]: Gnome: Update to
Note:
See TracChangeset
for help on using the changeset viewer.