printcap revision 18912
137Srgrimes#	@(#)printcap	5.3 (Berkeley) 6/30/90
218912Sjoerg# $Id$
337Srgrimes
418912Sjoerg#
518912Sjoerg# This enables a simple local "raw" printer, hooked up to the first
618912Sjoerg# parallel port.  No kind of filtering is done, so everything you
718912Sjoerg# pass to the "lpr" command will be printed unmodified.
818912Sjoerg#
918912Sjoerg# Remember, for further print queues you're going to add, you have to
1018912Sjoerg# chose different spool directories (the "sd" capability below),
1118912Sjoerg# otherwise you will greatly confuse lpd.
1218912Sjoerg#
1318912Sjoerg# For some advanced printing, have a look at the "apsfilter" package.
1418912Sjoerg# It plugs into the lpd system, allowing you to print a variety of
1518912Sjoerg# different file types by converting everything to PostScript(tm)
1618912Sjoerg# format.  If you don't have a PostScript(tm) printer, don't panic,
1718912Sjoerg# but do also install the "ghostscript" package.
1818912Sjoerg#
1918912Sjoerg# Do also refer to section 7 (Printing) of the handbook.  A local copy
2018912Sjoerg# can be found under /usr/share/doc/handbook/handbook.{html,latin1}.
2118912Sjoerg#
2218912Sjoerglp|local line printer:\
2318912Sjoerg	:lp=/dev/lpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs:
2418912Sjoerg#
2518912Sjoerg# Sample remote printer.  The physical printer is on machine "lphost".
2618912Sjoerg# NB: you cannot perform any kind of local filtering directly.  If
2718912Sjoerg# you need local filters (e.g. LF -> CR-LF conversion for HP printers),
2818912Sjoerg# create a filter script that recursively calls lpd with another -P
2918912Sjoerg# argument after filtering.
3018912Sjoerg#
3118912Sjoerg#remote|sample remote printer:\
3218912Sjoerg#	:rm=lphost:sd=/var/spool/output/lphost:lf=/var/log/lpd-errs:
33