]> git.ipfire.org Git - thirdparty/cups.git/blame - README.md
Update for 2.3b8.
[thirdparty/cups.git] / README.md
CommitLineData
07b9937a 1README - CUPS v2.3b8 - 2019-05-02
63f8dcbd 2=================================
2a20b512 3
d22e887a
MS
4> **Note:** CUPS v2.3b8 is not production code. Do not use on production
5> systems. For a production version of CUPS, please see the CUPS 2.2.x
6> releases. **Do not use CUPS v2.3b8 on production systems.**
7
8
16389be3 9Looking for compile instructions? Read the file `INSTALL.md` instead...
2a20b512
MS
10
11
12INTRODUCTION
13------------
14
15
16CUPS is a standards-based, open source printing system developed by Apple Inc.
17for macOS® and other UNIX®-like operating systems. CUPS uses the Internet
18Printing Protocol ("IPP") and provides System V and Berkeley command-line
19interfaces, a web interface, and a C API to manage printers and print jobs. It
20supports printing to both local (parallel, serial, USB) and networked printers,
21and printers can be shared from one computer to another, even over the Internet!
22
23Internally, CUPS uses PostScript Printer Description ("PPD") files to describe
24printer capabilities and features and a wide variety of generic and device-
25specific programs to convert and print many types of files. Sample drivers are
26included with CUPS to support many Dymo, EPSON, HP, Intellitech, OKIDATA, and
27Zebra printers. Many more drivers are available online and (in some cases) on
28the driver CD-ROM that came with your printer.
29
e944dbd4
MS
30CUPS is licensed under the Apache License Version 2.0. See the file
31"LICENSE" for more information.
2a20b512
MS
32
33
34READING THE DOCUMENTATION
35-------------------------
36
37Once you have installed the software you can access the documentation (and a
a7cdcd19 38bunch of other stuff) online at <http://localhost:631/>.
2a20b512
MS
39
40If you're having trouble getting that far, the documentation is located under
a7cdcd19 41the `doc/help` and `man` directories.
2a20b512
MS
42
43Please read the documentation before asking questions.
44
45
46GETTING SUPPORT AND OTHER RESOURCES
47-----------------------------------
48
a7cdcd19
MS
49If you have problems, *read the documentation first!* We also provide two
50mailing lists which are available at <https://lists.cups.org/mailman/listinfo>.
2a20b512
MS
51
52See the CUPS web site at <https://www.cups.org/> for other resources.
53
54
55SETTING UP PRINTER QUEUES USING YOUR WEB BROWSER
56------------------------------------------------
57
58CUPS includes a web-based administration tool that allows you to manage
a7cdcd19
MS
59printers, classes, and jobs on your server. Open <http://localhost:631/admin/>
60in your browser to access the printer administration tools:
2a20b512
MS
61
62*Do not* use the hostname for your machine - it will not work with the default
63CUPS configuration. To enable administration access on other addresses, check
16389be3 64the `Allow Remote Administration` box and click on the `Change Settings button.
2a20b512
MS
65
66You will be asked for the administration password (root or any other user in the
a7cdcd19 67sys/system/root/admin/lpadmin group on your system) when performing any
2a20b512
MS
68administrative function.
69
70
71SETTING UP PRINTER QUEUES FROM THE COMMAND-LINE
72-----------------------------------------------
73
a7cdcd19
MS
74CUPS currently uses PPD (PostScript Printer Description) files that describe
75printer capabilities and driver programs needed for each printer. The
76`everywhere` PPD is used for nearly all modern networks printers sold since
77about 2009. For example, the following command creates a print queue for a
78printer at address 11.22.33.44:
2a20b512 79
a7cdcd19
MS
80 lpadmin -p printername -E -v ipp://11.22.33.44/ipp/print -m everywhere
81
82CUPS also includes several sample PPD files you can use for "legacy" printers:
2a20b512
MS
83
84 Driver PPD Name
85 ----------------------------- ------------------------------
86 Dymo Label Printers drv:///sample.drv/dymo.ppd
87 Intellitech Intellibar drv:///sample.drv/intelbar.ppd
88 EPSON 9-pin Series drv:///sample.drv/epson9.ppd
89 EPSON 24-pin Series drv:///sample.drv/epson24.ppd
90 Generic PCL Laser Printer drv:///sample.drv/generpcl.ppd
91 Generic PostScript Printer drv:///sample.drv/generic.ppd
92 HP DeskJet Series drv:///sample.drv/deskjet.ppd
93 HP LaserJet Series drv:///sample.drv/laserjet.ppd
94 OKIDATA 9-Pin Series drv:///sample.drv/okidata9.ppd
95 OKIDATA 24-Pin Series drv:///sample.drv/okidat24.ppd
96 Zebra CPCL Label Printer drv:///sample.drv/zebracpl.ppd
97 Zebra EPL1 Label Printer drv:///sample.drv/zebraep1.ppd
98 Zebra EPL2 Label Printer drv:///sample.drv/zebraep2.ppd
99 Zebra ZPL Label Printer drv:///sample.drv/zebra.ppd
100
a7cdcd19 101You can run the `lpinfo -m` command to list all of the available drivers:
2a20b512
MS
102
103 lpinfo -m
104
16389be3 105Run the `lpinfo -v` command to list the available printers:
2a20b512
MS
106
107 lpinfo -v
108
16389be3 109Then use the correct URI to add the printer using the `lpadmin` command:
2a20b512
MS
110
111 lpadmin -p printername -E -v device-uri -m ppd-name
112
a7cdcd19
MS
113Current network printers typically use `ipp` or `ipps` URIS:
114
115 lpadmin -p printername -E -v ipp://11.22.33.44/ipp/print -m everywhere
116 lpadmin -p printername -E -v ipps://11.22.33.44/ipp/print -m everywhere
117
118Older network printers typically use `socket` or `lpd` URIs:
2a20b512
MS
119
120 lpadmin -p printername -E -v socket://11.22.33.44 -m ppd-name
121 lpadmin -p printername -E -v lpd://11.22.33.44/ -m ppd-name
122
123The sample drivers provide basic printing capabilities, but generally do not
a7cdcd19
MS
124exercise the full potential of the printers or CUPS. Other drivers provide
125greater printing capabilities.
2a20b512
MS
126
127
128PRINTING FILES
129--------------
130
16389be3 131CUPS provides both the System V `lp` and Berkeley `lpr` commands for printing:
2a20b512
MS
132
133 lp filename
134 lpr filename
135
16389be3 136Both the `lp` and `lpr` commands support printing options for the driver:
2a20b512
MS
137
138 lp -o media=A4 -o resolution=600dpi filename
139 lpr -o media=A4 -o resolution=600dpi filename
140
141CUPS recognizes many types of images files as well as PDF, PostScript, and text
142files, so you can print those files directly rather than through an application.
143
144If you have an application that generates output specifically for your printer
16389be3 145then you need to use the `-oraw` or `-l` options:
2a20b512
MS
146
147 lp -o raw filename
148 lpr -l filename
149
150This will prevent the filters from misinterpreting your print file.
151
152
153LEGAL STUFF
154-----------
155
07b9937a 156Copyright © 2007-2019 by Apple Inc.
82341b0b 157Copyright © 1997-2007 by Easy Software Products.
2a20b512 158
e3101897
MS
159CUPS is provided under the terms of the Apache License, Version 2.0. A copy of
160this license can be found in the file `LICENSE`. Additional legal information
161is provided in the file `NOTICE`.
2a20b512 162
e3101897
MS
163Unless required by applicable law or agreed to in writing, software distributed
164under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
165CONDITIONS OF ANY KIND, either express or implied. See the License for the
166specific language governing permissions and limitations under the License.