CUPS stands for the Common UNIX Printing System, more info about which may be found at www.cups.org.
There's nothing special you need to do to use the new print system, just continue using what you have in the past -- although if you use any special options, those may need to be modified (see below).
Hence, from the command line, you just:
lpr filenameor, if you want to specify a specific printer/queue:
lpr -P print-queue filename
All the routing to the new print spooler takes place down in the "guts" of the printing system, so any software that submits printing via the lpr command/interface should just work.
You can see the list of available print queues and their current state from the command line via the command:
lpstat -p -dor from a web-browser at:
http://printspool.astro.washington.edu:631/printersOn the webpage, you can click on any printer name to see the list of jobs queued for that printer.
lpstat -uThis will give you a list of all your currently queued jobs, any of which you many then cancel via:
lprm job-id
If you've looked at the list of print queues, you may be wondering where the queues such as eris-single and such have gone. And if they're gone, how you are going to print single-sided when needed? Well, you can now control those options such as single-sidedness with the "option" flag to the lpr command. (Gosh, an option flag... what will they think up next!)
The options that you might find useful, although not all will be supported by all printers, are:
-o landscape -o number-up=n -o sides=one-sided -o sides=two-sided-long-edge -o sides=two-sided-short-edge -o media=media,... where media is one of: Size: Letter, Legal, A4 Tray: Upper, Lower, MultiPurpose -o page-ranges=range,... where range is either a single page number n, or a range n-m
For example, to print single-sided landscapes on eris, which prints double-sided portraits by default, use the command:
lpr -P eris -o landscape -o sides=one-sided filename
http://printspool.astro.washington.edu:631/sum.html