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