Software Users Manual 

http://localhost:631/sum.html

Admin 

http://localhost:631/admin

Setting the Output Order 

The the -o outputorder=order option to set the output order of all pages:

lp -o outputorder=normal filename ENTER
lp -o outputorder=reverse filename ENTER
lpr -o outputorder=reverse filename ENTER

N-Up Printing 

The -o number-up=value option selects N-Up printing. N-Up printing places multiple document pages on a single printed page. CUPS supports 1, 2, 4, 6, 9, and 16-Up formats; the default format is 1-Up:

lp -o number-up=1 filename ENTER
lp -o number-up=2 filename ENTER
lp -o number-up=4 filename ENTER
lpr -o number-up=16 filename ENTER

The -o page-border=value option chooses the border to draw around each page:

  • -o page-border=double; draw two hairline borders around each page
  • -o page-border=double-thick; draw two 1pt borders around each page
  • -o page-border=none; do not draw a border (default)
  • -o page-border=single; draw one hairline border around each page
  • -o page-border=single-thick; draw one 1pt border around each page

The -o number-up-layout=value option chooses the layout of the pages on each output page:

  • -o number-up-layout=btlr; Bottom to top, left to right
  • -o number-up-layout=btrl; Bottom to top, right to left
  • -o number-up-layout=lrbt; Left to right, bottom to top
  • -o number-up-layout=lrtb; Left to right, top to bottom (default)
  • -o number-up-layout=rlbt; Right to left, bottom to top
  • -o number-up-layout=rltb; Right to left, top to bottom
  • -o number-up-layout=tblr; Top to bottom, left to right
  • -o number-up-layout=tbrl; Top to bottom, right to left

Setting the Brightness 

You can control the overall brightness of the printed output using the -o brightness=percent option:

lp -o brightness=120 filename ENTER
lpr -o brightness=120 filename ENTER

Values greater than 100 will lighten the print, while values less than 100 will darken it.

Saving Printer Options and Defaults 

Printer Instances 

Besides setting options for each print queue, CUPS supports printer instances which allow you to define several different sets of options for each printer. You specify a printer instance using the slash (/) character:

lpoptions -p laserjet/duplex -o sides=two-sided-long-edge ENTER
lpoptions -p laserjet/legal -o media=Legal ENTER

The lp and lpr commands also understand this notation:

lp -d laserjet/duplex filename ENTER
lpr -P laserjet/legal filename ENTER

Removing Instances 

Use the -x printer/instance option to remove a printer instance that you no longer need:

lpoptions -x laserjet ENTER
lpoptions -x laserjet/duplex ENTER
lpoptions -x laserjet/legal ENTER

The -x option only removes the default options for that printer and instance; the original print queue will remain until deleted with the lpadmin(8) command by the administrator.