2003-01-05 08:11:33 +08:00
|
|
|
<sect2>
|
|
|
|
<title>Configuring LPRng</title>
|
|
|
|
|
|
|
|
<sect3><title>Config files</title>
|
2003-04-21 06:15:01 +08:00
|
|
|
<para><filename>/etc/printcap</filename></para>
|
2003-01-05 08:11:33 +08:00
|
|
|
</sect3>
|
|
|
|
|
|
|
|
<sect3><title>Configuration Information</title>
|
|
|
|
|
|
|
|
<para>There is no generic <filename>printcap</filename> for all
|
|
|
|
printers. A sample printcap is loaded into the <filename>etc</filename>
|
|
|
|
directory which can be some help. Information is also available at
|
|
|
|
<ulink url="http://www.lprng.org"/> and <ulink
|
|
|
|
url="http://www.linuxprinting.org"/>.</para>
|
|
|
|
|
2003-02-23 05:21:43 +08:00
|
|
|
<para>The init script installed by LPRng is not consistent with BLFS
|
|
|
|
scripts; therefore, we will create a new one with the following
|
|
|
|
commands:</para>
|
|
|
|
|
|
|
|
<para><screen><userinput>mv /etc/rc.d/init.d/lpd /etc/rc.d/init.d/lpd.orig &&
|
|
|
|
cat > /etc/rc.d/init.d/lpd << "EOF"</userinput>
|
|
|
|
#!/bin/sh
|
|
|
|
# Begin $rc_base/init.d/lpd
|
|
|
|
|
|
|
|
# Based on sysklogd script from LFS-3.1 and earlier.
|
|
|
|
# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
|
|
|
|
|
|
|
|
source /etc/sysconfig/rc
|
|
|
|
source $rc_functions
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
start)
|
|
|
|
echo "Starting lpd..."
|
|
|
|
loadproc /usr/sbin/lpd
|
|
|
|
;;
|
|
|
|
|
|
|
|
stop)
|
|
|
|
echo "Stopping lpd..."
|
|
|
|
killproc /usr/sbin/lpd
|
|
|
|
;;
|
|
|
|
|
|
|
|
reload)
|
|
|
|
echo "Reloading lpd..."
|
|
|
|
reloadproc /usr/sbin/lpd
|
|
|
|
;;
|
|
|
|
|
|
|
|
restart)
|
|
|
|
$0 stop
|
|
|
|
sleep 1
|
|
|
|
$0 start
|
|
|
|
;;
|
|
|
|
|
|
|
|
status)
|
|
|
|
statusproc /usr/sbin/lpd
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
echo "Usage: $0 {start|stop|reload|restart|status}"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# End $rc_base/init.d/lpd
|
|
|
|
<userinput>EOF
|
|
|
|
chmod 755 /etc/rc.d/init.d/lpd</userinput></screen></para>
|
|
|
|
|
2003-01-05 08:11:33 +08:00
|
|
|
<para>Create the symbolic links to the lprng init script in the relevant
|
2003-04-22 23:42:52 +08:00
|
|
|
<filename>rc.d</filename> directories with the following commands:
|
2003-01-05 08:11:33 +08:00
|
|
|
<screen><userinput>cd /etc/rc.d/init.d &&
|
|
|
|
ln -sf ../init.d/lpd ../rc0.d/K00lprng &&
|
|
|
|
ln -sf ../init.d/lpd ../rc1.d/K00lprng &&
|
|
|
|
ln -sf ../init.d/lpd ../rc2.d/S99lprng &&
|
|
|
|
ln -sf ../init.d/lpd ../rc3.d/S99lprng &&
|
|
|
|
ln -sf ../init.d/lpd ../rc4.d/S99lprng &&
|
|
|
|
ln -sf ../init.d/lpd ../rc5.d/S99lprng &&
|
|
|
|
ln -sf ../init.d/lpd ../rc6.d/K00lprng</userinput></screen></para>
|
|
|
|
|
|
|
|
</sect3>
|
|
|
|
|
|
|
|
</sect2>
|
|
|
|
|