How to add a fake, dummy, null printer in CUPS?
I'm writing a piece of software that supports multiple printers. In order to test it, I need to add multiple printers to my CUPS server. How can I do that?
I want to add a few fake printers that will send the jobs directly to /dev/null. That way, I can watch the "completed jobs" list in CUPS interface and observe if my software is using the correct printer for each job.
Solution 1:
One solution is to install cups-pdf. It adds a virtual printer that writes PDF files. There are several tutorials on the web about how to install and configure it; since I use Gentoo, I've read Gentoo-wiki, which also mentions Sabayon wiki.
cups-pdf virtual printer has a configuration file in /etc/cups/cups-pdf.conf
, and by default all PDF files are written to /var/spool/cups-pdf/${USER}
.
(NB: On Ubuntu it writes to ~/PDF/)
There are a few limitations, though:
Since there is only one configuration file, multiple PDF printers will save to the same directory.
It is impossible to print "raw" data (using, for instance,
lpr -o raw
). Even sending a PDF file as a raw job will not work. Raw print jobs will generate a blank PDF file with just an empty page.
Even with these limitations, it works perfectly for my needs.
Footnote: if the user is using Gnome, or printing through a GTK+ application, then there is already a "Print to File" pseudo-printer at the print dialog. Thus, why should the user still want to add a virtual PDF printer? Here are a few reasons:
- That "Print to File" is specific to GTK+, and is not available for non-GTK+ applications. (maybe KDE has a similar feature, but I'm not sure)
- It makes possible to generate a PDF from Flash "applications" that were designed for printing. For instance, the PocketMod.
- Adding a virtual printer to CUPS makes it possible to test printing using shell scripts or other software that talks directly with CUPS. This is specially useful for developers while testing their applications.
- It is possible to "share" this virtual printer with the local network. Not exactly useful, but possible.
- It is possible to attach a post-processing command to be executed right after the PDF file has been saved.
Solution 2:
The Cups Forum has a more complete/accurate answer to this question.
The answer is that the device URI should be set to file:/dev/null
So in my Ubuntu setup:
- Device URI: file:/dev/null
- Make and Model: Local Raw Printer
Which works for me perfectly.
I searched the Cups forum again and found this:
Commandline Null Printer Setup in Cups Forum
In your cupsd.conf:
FileDevice yes
Setup Printer
lpadmin -p nowhere -E -v file:/dev/null
Testing Printer
who |lp -d nowhere
Solution 3:
You can create a printer that outputs to /dev/null
with lpadmin
:
$ sudo lpadmin -p myprinter -E -v file:///dev/null
This will be written to /etc/cups/printers.conf
, but you can also view printers with lpstat
:
$ sudo lpstat -s
myprinter accepting requests since Thu 22 Jan 2015 11:04:46 AM GMT
system default destination: myprinter
device for myprinter: ///dev/null
Note that you may need to enable FileDevice in /etc/cups/cupsd.conf on old Linux distros.
To make your new printer the default, use lpoptions
:
$ sudo lpoptions -d myprinter
Solution 4:
One of the best solution is to use ippserver
. It comes with CUPSv2.2.2
and higher. You can alternatively get the project from here: IPP sample implementations.
According to the description on the manual page:
ippserver is a simple Internet Printing Protocol (IPP) server conforming to the IPP Everywhere and IPP Shared Infrastructure Extensions (INFRA) specifications. It can be used as a standalone print server and/or a very basic infrastructure server between standard IPP clients and IPP proxies conforming to the INFRA specification.
To use it, all you need to do is run ippserver "My cool printer"
, and it will create a virtual printer with the name My cool printer
for you. It runs like a web server and listens on specific ports.
In case you need multiple printers, you can run the server on multiple ports using ippserver "My other cool printer" -p 8888
.
You can even supply printer attributes using an attributes file. For instance, your printer supports by default high quality prints, you can add the following attribute in the attributes file:
ATTR enum print-quality-default high
and run the server using:
ippserver "My high quality cool printer" -a attributes-file.txt
References:
- PWG IPP Sample
- CUPS ipptoolfile man page