137Srgrimes#	@(#)printcap	5.3 (Berkeley) 6/30/90
250472Speter# $FreeBSD$
337Srgrimes
418912Sjoerg#
518912Sjoerg# This enables a simple local "raw" printer, hooked up to the first
668171Sandreas# parallel port.  No kind of filtering is done, so everything you pass
768171Sandreas# to the "lpr" command will be printed unmodified.
818912Sjoerg#
968171Sandreas# Remember, for further print queues you're going to add, you have
1068171Sandreas# to choose 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)
1668171Sandreas# format.  For more information about apsfilter visit
1718912Sjoerg#
1868171Sandreas#	     http://www.apsfilter.org/
1918912Sjoerg#
2068171Sandreas# If you don't have a PostScript(tm) printer, don't panic, but do
2168171Sandreas# also install the latest "ghostscript" package for best printer support.
2232241Ssteve#
23130151Sschweikh# Do also refer to the "printing" section of the handbook.
2418912Sjoerg#
25112623Strhodes#	http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/printing.html
2668171Sandreas#
2768171Sandreas# A local copy can be found under
2868171Sandreas#
2968171Sandreas#	/usr/share/doc/handbook/handbook.{html,latin1}.
3068171Sandreas#
3168171Sandreas# Banner pages are now suppressed by default.  Remove the :sh: capability
3268171Sandreas# to turn them back on.
3368171Sandreas#
3468171Sandreas#lp|local line printer:\
3568171Sandreas#	:sh:\
3668171Sandreas#	:lp=/dev/lpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs:
3768171Sandreas#
3818912Sjoerg# Sample remote printer.  The physical printer is on machine "lphost".
3968171Sandreas# You can perform any kind of local filtering directly.  If you need
4068171Sandreas# local filters (e.g. LF -> CR-LF conversion for HP printers), create
4168171Sandreas# a filter script that sends the proper escape sequence to the printer
4268171Sandreas# and then concatenates stdin to stdout.
4318912Sjoerg#
4418912Sjoerg#remote|sample remote printer:\
4532241Ssteve#	:sh:\
4668171Sandreas#	:rm=lphost:sd=/var/spool/output/lphost:lf=/var/log/lpd-errs:\
4768171Sandreas#	:if=/usr/local/libexec/if-script:
4833089Sache#
4933089Sache# Simple Russian printer with hardware CP866 character set, output filter
5033089Sache# used for KOI8-R -> CP866 conversion
5133089Sache#
5233089Sache#lp|Russian local line printer:\
5333089Sache#	:sh:of=/usr/libexec/lpr/ru/koi2alt:\
5433089Sache#	:lp=/dev/lpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs:
55