- Timestamp:
- 03/28/2004 07:14:54 AM (20 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 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/inkscape-core-mods, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, v5_1, v5_1-pre1, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- babc75b
- Parents:
- ae9c528
- Location:
- pst/printing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pst/printing/cups/cups-config.xml
rae9c528 rfe88f584 21 21 created the startup file <filename>/etc/rc.d/init.d/cups</filename>. The file 22 22 works, but you may want to change it to a more conventional <acronym>LFS 23 </acronym> startup file:</para> 23 </acronym> startup file by installing the script included in the 24 <xref linkend="intro-important-bootscripts"/> package:</para> 24 25 25 <screen><userinput><command>cat > /etc/rc.d/init.d/cups << "EOF"</command> 26 #!/bin/sh 27 # Begin $rc_base/init.d/cups 28 29 # Start or stop the CUPS server based upon the first argument to the script. 30 31 . /etc/sysconfig/rc 32 . $rc_functions 33 34 case $1 in 35 start) 36 echo "Starting CUPS Printserver..." 37 loadproc /usr/sbin/cupsd 38 ;; 39 stop) 40 echo "Stopping CUPS Printserver..." 41 killproc cupsd 42 ;; 43 44 reload) 45 echo "Reloading CUPS Printserver..." 46 reloadproc /usr/sbin/cupsd 47 ;; 48 49 restart) 50 $0 stop 51 sleep 1 52 $0 start 53 ;; 54 55 status) 56 statusproc cupsd 57 ;; 58 59 *) 60 echo "Usage: $0 {start|stop|reload|restart|status}" 61 exit 1 62 ;; 63 esac 64 65 # End $rc_base/init.d/cups startup script. 66 <command>EOF</command></userinput></screen> 67 68 <para>Create the symbolic links to this file in the relevant 69 <filename class="directory">rc.d</filename> directory 70 with the following commands:</para> 71 72 <screen><userinput><command>cd /etc/rc.d/init.d && 73 ln -sf ../init.d/cups ../rc0.d/K00cups && 74 ln -sf ../init.d/cups ../rc1.d/K00cups && 75 ln -sf ../init.d/cups ../rc2.d/S99cups && 76 ln -sf ../init.d/cups ../rc3.d/S99cups && 77 ln -sf ../init.d/cups ../rc4.d/S99cups && 78 ln -sf ../init.d/cups ../rc5.d/S99cups && 79 ln -sf ../init.d/cups ../rc6.d/K00cups</command></userinput></screen> 26 <screen><userinput><command>make install-cups</command></userinput></screen> 80 27 81 28 </sect2> -
pst/printing/lprng/lprng-config.xml
rae9c528 rfe88f584 16 16 17 17 <para>The init script installed by <application>LPRng</application> is not 18 consistent with <acronym>BLFS</acronym> scripts; therefore, we will create a 19 new one with the following commands:</para> 18 consistent with other <acronym>BLFS</acronym> scripts; therefore, we will install 19 <filename>/etc/rc.d/init.d/lprng</filename> 20 init script included in the <xref linkend="intro-important-bootscripts"/> package.</para> 20 21 21 <screen><userinput><command>mv /etc/rc.d/init.d/lpd /etc/rc.d/init.d/lpd.orig && 22 cat > /etc/rc.d/init.d/lpd << "EOF"</command> 23 #!/bin/sh 24 # Begin $rc_base/init.d/lpd 25 26 # Based on sysklogd script from LFS-3.1 and earlier. 27 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 28 29 . /etc/sysconfig/rc 30 . $rc_functions 31 32 case "$1" in 33 start) 34 echo "Starting lpd..." 35 loadproc /usr/sbin/lpd 36 ;; 37 38 stop) 39 echo "Stopping lpd..." 40 killproc /usr/sbin/lpd 41 ;; 42 43 reload) 44 echo "Reloading lpd..." 45 reloadproc /usr/sbin/lpd 46 ;; 47 48 restart) 49 $0 stop 50 sleep 1 51 $0 start 52 ;; 53 54 status) 55 statusproc /usr/sbin/lpd 56 ;; 57 58 *) 59 echo "Usage: $0 {start|stop|reload|restart|status}" 60 exit 1 61 ;; 62 esac 63 64 # End $rc_base/init.d/lpd 65 <command>EOF 66 chmod 755 /etc/rc.d/init.d/lpd</command></userinput></screen> 67 68 <para>Create the symbolic links to the lprng init script in the relevant 69 <filename>rc.d</filename> directories with the following 70 commands:</para> 71 <screen><userinput><command>cd /etc/rc.d/init.d && 72 ln -sf ../init.d/lpd ../rc0.d/K00lprng && 73 ln -sf ../init.d/lpd ../rc1.d/K00lprng && 74 ln -sf ../init.d/lpd ../rc2.d/S99lprng && 75 ln -sf ../init.d/lpd ../rc3.d/S99lprng && 76 ln -sf ../init.d/lpd ../rc4.d/S99lprng && 77 ln -sf ../init.d/lpd ../rc5.d/S99lprng && 78 ln -sf ../init.d/lpd ../rc6.d/K00lprng</command></userinput></screen> 22 <screen><userinput><command>make install-lprng</command></userinput></screen> 79 23 80 24 </sect3>
Note:
See TracChangeset
for help on using the changeset viewer.