I'm trying to start lpd on t commandline but it won't start. It's there
at /usr/sbin/lpd but it just won't show up with 'ps -aux'. I
have a bare bones system so there may be something missing, but
what? Anyone know what could keep such a daemon from running?
I get no errors when I type lpd.
Thanks
-Tony
----------- here's my setup ----------
I've got filter at /var/spool/lpd/lp and printcap at /etc
######################## printcap #################
# /etc/printcap
##PRINTTOOL## LOCAL ljet4 300x300 letter {}
lp:\
:sd=/var/spool/lpd/lp:\
:mx#0:\
:lp=/device/lp1:\
:if=/var/spool/lpd/lp/filter:\
:sh:
######################## filter #################
#!/bin/sh
DEVICE=ljet4
RESOLUTION=300x300
PAPERSIZE=letter
SENDEOF=
nenscript -TUS -ZB -p- |
if [ "$DEVICE" = "PostScript" ]; then
cat -
else
gs -q -sDEVICE=$DEVICE \
-r$RESOLUTION \
-sPAPERSIZE=$PAPERSIZE \
-dNOPAUSE \
-dSAFER \
-sOutputFile=- -
fi
if [ "$SENDEOF" != "" ]; then
printf "\004"
fi
exit 0