1 | PyKota's FAQ : |
---|
2 | |
---|
3 | # $Id$ |
---|
4 | |
---|
5 | * I've installed all correctly, I've created users |
---|
6 | and printers, but when printing nothing works. |
---|
7 | What is the problem ? |
---|
8 | The most probable cause for this is that you didn't |
---|
9 | adapt /etc/pykota/pykota.conf to your own configuration. |
---|
10 | The file installed by default is just an example, you |
---|
11 | have to modify it. See the rest of this document to |
---|
12 | learn how to really diagnose what went wrong. |
---|
13 | |
---|
14 | * How can I diagnose the problem when something goes wrong ? |
---|
15 | |
---|
16 | Put "LogLevel debug2" in cupsd.conf (usually in /etc/cups/). |
---|
17 | Then put "logger: stderr", "debug: yes" and |
---|
18 | "crashrecipient: youremailaddress" in /etc/pykota/pykota.conf. |
---|
19 | Finally restart CUPS. |
---|
20 | CUPS' error_log file will now contain many informations which |
---|
21 | will help diagnose your problem. You will receive failure |
---|
22 | notices by email, and you can send all this to us for |
---|
23 | diagnostic. |
---|
24 | |
---|
25 | For LPRng, better to put "logger: system" in pykota.conf so |
---|
26 | that all debug messages for PyKota will go to syslog. |
---|
27 | |
---|
28 | * Why doesn't CUPS under Debian Woody automatically |
---|
29 | detects PyKota managed devices ? |
---|
30 | |
---|
31 | The CUPS version in Debian Woody is 1.1.14 which is a bit |
---|
32 | too old. To use PyKota with this version, just install |
---|
33 | your printers as usual in CUPS web interface, and ensure |
---|
34 | they work fine, then save your changes, and modify |
---|
35 | /etc/cups/printers.conf manually as explained in |
---|
36 | PyKota's toplevel README file. Finally restart CUPS, |
---|
37 | and your printers should be managed by PyKota. |
---|
38 | Another solution is to install a newer CUPS release. |
---|
39 | |
---|
40 | * Is print accounting ever exact ? |
---|
41 | |
---|
42 | No. Print accounting is **never** exact, because it depends |
---|
43 | on external factors like the presence of paper in the printer, |
---|
44 | the quantity of remaining ink in the print cartridge, paper |
---|
45 | jams, etc... All these things are very difficult to account |
---|
46 | for correctly, and no print accounting package deals with |
---|
47 | these artefacts correctly in all situations. |
---|
48 | We are however confident that PyKota is one of the more |
---|
49 | exact print accounting software, because by default it |
---|
50 | asks the printers for how many pages they have really printed. |
---|
51 | |
---|
52 | * Can PyKota account for ink usage ? |
---|
53 | |
---|
54 | No. Actually PyKota doesn't account for ink usage, but this |
---|
55 | may come in a future release. PyKota only accounts for pages |
---|
56 | printed and/or money spent. If ink accounting is a necessity |
---|
57 | for you, PrintBill is recommended instead of PyKota. PrintBill |
---|
58 | allows you to bill differently per color, and to bill depending |
---|
59 | on the percent of the ink covered part of the pages. |
---|
60 | |
---|
61 | * What is a 'dumb printer' ? |
---|
62 | |
---|
63 | In PyKota, the term 'dumb printer' defines a printer which doesn't |
---|
64 | natively understand PostScript, PCL5 (up to), PCLXL (aka PCL6), PDF |
---|
65 | or ESC/P2 and doesn't have an internal page counter, and for which |
---|
66 | you don't know how to compute a job's size in number of pages by |
---|
67 | analyzing its content. |
---|
68 | Any printer which is not a 'dumb printer' according to the above |
---|
69 | definition is supported by PyKota. |
---|
70 | |
---|
71 | * How can I make PyKota work with my non-postscript printer under |
---|
72 | CUPS ? |
---|
73 | |
---|
74 | From version 1.16alpha7, PyKota includes a CUPS backend which |
---|
75 | allows you to use any type of printer and any driver, provided |
---|
76 | your printer is not a 'dumb printer' (see above). |
---|
77 | |
---|
78 | * How can I use my 'dumb printer' with CUPS and PyKota. |
---|
79 | |
---|
80 | You have to use a software accounter directive, and |
---|
81 | create a script which understands your printer's |
---|
82 | Page Description Language. |
---|
83 | |
---|
84 | PyKota natively understands DSC compliant PostScript, PCL5, |
---|
85 | PCLXL (aka PCL6), PDF and ESC/P2. Support for Binary PostScript is |
---|
86 | done through GhostScript. More PDLs will be added in the future. |
---|
87 | However you can always plug your own PDL analyzer in PyKota. |
---|
88 | |
---|
89 | * I've got a great number of users. How can I automatically |
---|
90 | set an initial print quota for them on first print ? |
---|
91 | |
---|
92 | You have to define an external policy for unknown users, |
---|
93 | to automatically add them to the Print Quota database. |
---|
94 | The sample configuration file contains examples to do this. |
---|
95 | |
---|
96 | * What does the --prototype command line option to edpykota do ? |
---|
97 | |
---|
98 | This option currently (v1.17) only copies the soft and hard |
---|
99 | page limits from a template user to other users. This option |
---|
100 | needs to be updated to new PyKota functionnalities, because it |
---|
101 | currently lacks. |
---|
102 | |
---|
103 | * How can I share print quota between some printers only (not all) ? |
---|
104 | |
---|
105 | To do this you have to put the printers into a printers group, and |
---|
106 | set quota on the printer group, instead of (or in addition to) |
---|
107 | the printers themselves. |
---|
108 | |
---|
109 | * What is a printer group ? |
---|
110 | |
---|
111 | A printer group is exactly like a normal printer, but is |
---|
112 | unknown by the printing system. You can use printer groups |
---|
113 | to share print quota between printers. |
---|
114 | |
---|
115 | * How can I create a printer group ? |
---|
116 | |
---|
117 | Just use pkprinters, like for normal printers, then create |
---|
118 | quota entries for users or users groups on it using the |
---|
119 | edpykota command |
---|
120 | |
---|
121 | * How can I put a printer into a printer group ? |
---|
122 | |
---|
123 | Use the pkprinters command to do this. |
---|
124 | |
---|
125 | $ pkprinters --help |
---|
126 | |
---|
127 | Will print the complete help and tell you how to do. |
---|
128 | |
---|
129 | * How quota checking and update is done with printer groups ? |
---|
130 | |
---|
131 | Print accounting and quota checking is done for a printer and |
---|
132 | all the printers groups it belongs to, recursively. |
---|
133 | If quota is reached on ANY of these printers for the current user, |
---|
134 | printing is denied. |
---|
135 | |
---|
136 | * Is this feature robust ? |
---|
137 | |
---|
138 | It should be. However, beware of integrity problems. LDAP has no |
---|
139 | sense of database integrity, and PostgreSQL constraints have not |
---|
140 | yet been fully implemented. The code actually *tries* to forbid |
---|
141 | circular printers groups, but if you create printer groups with |
---|
142 | another tool (e.g. psql or gq), then you are mostly on you |
---|
143 | own to not create infinite loops. |
---|
144 | |
---|
145 | * How is computed the job's price ? |
---|
146 | |
---|
147 | A job's price is computed with this formula : |
---|
148 | |
---|
149 | SUM((NbPages * PricePerPage) + PricePerJob) |
---|
150 | |
---|
151 | For current printer and all the printers groups it is |
---|
152 | a member of, if any, recursively. |
---|
153 | This may be difficult to grasp, but offers unprecedented |
---|
154 | flexibility. |
---|
155 | |
---|
156 | * My question isn't answered there, can you help ? |
---|
157 | |
---|
158 | Sure. Ask your question to the mailing list. If this is a |
---|
159 | frequently asked question, or if your problem is on the contrary |
---|
160 | very specific, it will probably be added to this document. |
---|
161 | |
---|
162 | You can also ask questions by IRC : |
---|
163 | |
---|
164 | /server irc.freenode.net |
---|
165 | /join #pykota |
---|
166 | |
---|
167 | Send any new questions to Jerome Alet - <alet@librelogiciel.com> |
---|