| Printer | Location | Notes |
| spiff | CoC back hallway 2nd Floor | |
| calvin | Darts Lab | |
| moe | CoC back hallway, 1st Floor |
lpr -Pcalvin-dulplex file.ps
Start->Run->"\\cobra\calvin-pcl"This will set up a printer driver for calvin using HP's PCL language. It is better than the regular postscript driver, and you can set double-sided output in the preferences page. This driver is also the one you should use if you are printing PDF files. I have had many problems with different printers printing PDF using the regular postscript drivers.
I use a script, pdfpr:
#!/bin/csh
if( $# == 2 ) then
set printer=$2
else
set printer=$PRINTER
endif
if( $1 != "" ) then
cat ${1} | acroread -toPostScript | lpr -P $printer
echo ${1} sent to $printer ... OK!
else
echo PDF Print: No filename defined!
endif
Does not require an X server running! Works wherever there's a
decent install of acroread. Enjoy!