Installing the printer by just adding a set of entries like your example to the printers.conf does succeed in creating the printer without a PPD file. But that printer had the same behavior as before. So it's not clear that the PPD is doing anything.
While playing with this, at some point I realized that my lpr command was actually just a link to lp, which has somewhat different behavior (and doesn't like the -# switch for copies). So I unlinked it and then installed cups-bsd which includes its own lpr....
apt remove lpr
apt install cups-bsd
That still didn't fix the CRLF issue. I tried adjusting the default CUPS options for the printer, i.e. setting
Characters to send for a New Line option to either
Carriage Return and Line Feed (CR + LF) (DOS/Windows style) or
Line Feed (LF) only (Unix/Linux style) but that didn't seem to make any difference either.
For now I'm ok with either relying on the physical printer's own setup options to handle the LF/CRLF issue (which I'm guessing may be what you've done), or just activating the CRLF option in A-Shell. Or creating a print filter.
But one critical detail that your example revealed: despite the documentation suggesting that the
lpr -l switch is equivalent to the
-o raw switch, with
lpr -l the PCL commands work, while in
-o raw, they didn't.
So for anyone struggling with CUPS under Debian, the recipe that worked for me is:
- Use the /localhost:631 web interface to add the printer. Use the socket://ipaddr or socket://ipaddr:9100 interface. Select Generic as the make, and Generic Text-Only as the model. (Alternatively, just create a <printer>...</printer> definition text file (similar to the one John listed above) and add it manually to your /etc/cups/printers.conf file. (You might have to restart CUPS for it to recognize a printer added that way.)
- In the printer init file, use DEVICE = ptrname -l
- Either configure the printer to convert LF to CRLF, or add the OPTIONS=CRLF option to the miame.ini file.
With that you can embed PCL codes in the print files. Note that if you are converting from a dot matrix printer to laser, you may need to create an A-Shell print filter SBX to convert from the dot matrix commands to PCL equivalents. If so you may find the
OKI2PCL module in the SOSLIB helpful, either as is, or as a starting point for your own converter.
If your print command doesn't generate an error but also doesn't print, check the OPR:SPOOL.LOG file, which is where you'll see the actual
lpr command line and any error messages.