Printing at CSE

This website is mainly for my usage, so I shall dive right in.
  1. SSH pprserver.cse.iitk.ac.in
  2. There are 4 printers: lp1, lp2, lp3, lp4
  3. lp1 and lp2 can print double-sided
  4. The command below shows the files in the print queue for lp2:
    $ ppop list lp2
  5. For double-sided printing:
    $ ppr -d lp2 --feature Duplex=DuplexNoTumble filename
  6. For single-sided printing:
    $ ppr -d lp2 --feature Duplex=NoDuplex filename
Back