Commit | Line | Data |
---|---|---|
984263bc MD |
1 | # @(#)printcap 5.3 (Berkeley) 6/30/90 |
2 | # $FreeBSD: src/etc/printcap,v 1.10.2.2 2002/08/07 10:33:39 blackend Exp $ | |
fee78af7 | 3 | # $DragonFly: src/etc/printcap,v 1.3 2008/02/11 15:59:37 matthias Exp $ |
984263bc MD |
4 | |
5 | # | |
6 | # This enables a simple local "raw" printer, hooked up to the first | |
7 | # parallel port. No kind of filtering is done, so everything you pass | |
8 | # to the "lpr" command will be printed unmodified. | |
9 | # | |
10 | # Remember, for further print queues you're going to add, you have | |
11 | # to choose different spool directories (the "sd" capability below), | |
12 | # otherwise you will greatly confuse lpd. | |
13 | # | |
14 | # For some advanced printing, have a look at the "apsfilter" package. | |
15 | # It plugs into the lpd system, allowing you to print a variety of | |
16 | # different file types by converting everything to PostScript(tm) | |
17 | # format. For more information about apsfilter visit | |
18 | # | |
19 | # http://www.apsfilter.org/ | |
20 | # | |
21 | # If you don't have a PostScript(tm) printer, don't panic, but do | |
22 | # also install the latest "ghostscript" package for best printer support. | |
23 | # | |
24 | # Do also refer to the "printing" section of the handbook. | |
25 | # | |
a754a615 | 26 | # http://www.dragonflybsd.org/docs/handbook/handbook-printing/ |
984263bc MD |
27 | # |
28 | # Banner pages are now suppressed by default. Remove the :sh: capability | |
29 | # to turn them back on. | |
30 | # | |
31 | #lp|local line printer:\ | |
32 | # :sh:\ | |
33 | # :lp=/dev/lpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs: | |
34 | # | |
35 | # Sample remote printer. The physical printer is on machine "lphost". | |
36 | # You can perform any kind of local filtering directly. If you need | |
37 | # local filters (e.g. LF -> CR-LF conversion for HP printers), create | |
38 | # a filter script that sends the proper escape sequence to the printer | |
39 | # and then concatenates stdin to stdout. | |
40 | # | |
41 | #remote|sample remote printer:\ | |
42 | # :sh:\ | |
43 | # :rm=lphost:sd=/var/spool/output/lphost:lf=/var/log/lpd-errs:\ | |
44 | # :if=/usr/local/libexec/if-script: | |
45 | # | |
46 | # Simple Russian printer with hardware CP866 character set, output filter | |
47 | # used for KOI8-R -> CP866 conversion | |
48 | # | |
49 | #lp|Russian local line printer:\ | |
50 | # :sh:of=/usr/libexec/lpr/ru/koi2alt:\ | |
51 | # :lp=/dev/lpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs: |