Changes between Version 71 and Version 72 of CAL Printers


Ignore:
Timestamp:
09/18/06 10:01:09 (19 years ago)
Author:
cdelacruz@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CAL Printers

    v71 v72  
    3737LPDEST=printername; export LPDEST
    3838}}}
    39 where printername is one of the names defined above (e.g., moth, cricket, etc.).
     39
     40For printers which have a duplex unit, you can print in duplex with a command like:
     41{{{
     42lp -d printername -o Duplex=DuplexNoTumble file-to-print.ps
     43
     44(change DuplexNoTumble? to DuplexTumble? if you'd prefer the "short edge" duplexing)
     45}}}
     46To print single-sided on a printer that defaults to duplex, something like this should work:
     47{{{
     48lp -d printername -o Duplex=None file-to-print.ps
     49}}}
     50To learn more about what values are available (and default)
     51for an option for a given printer from the command line, use lpoptions:
     52{{{
     53lpoptions -d printername -l | grep ^Duplex
     54}}}
    4055
    4156== Configuring the printers under different operating systems ==