Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sdd.hp.com!decwrl!bacchus.pa.dec.com!deccrl!shlump.nac.dec.com!regent.dec.com!lasko From: lasko@regent.dec.com (Tim Lasko, Digital Equipment Corp., Westford, MA) Newsgroups: comp.lang.postscript Subject: Re: DEC Server 20 -- how do I 'activate' duplex mode Message-ID: <16000@shlump.nac.dec.com> Date: 12 Oct 90 17:48:12 GMT Sender: newsdaemon@shlump.nac.dec.com Organization: Digital Equipment Corporation Lines: 38 In article <1990Oct10.223659.1180@sun1.ins.cwru.edu>, cjs@po.CWRU.Edu (Christopher J. Seline) writes... >I'm not even sure if our DEC Server 20 has a duplex (both-side) mode. But >if it does how do I 'start' it? >Also, how do I tell a postscript print (specificly the Dec Server 20) which >paper tray to use? >cjs@cwru.cwru.edu Digital's PrintServer 20 does support duplex printing and tray selection. If you're programming in PostScript, you can use the PostScript extension operator: boolean setduplexmode -- ------------- if the boolean value is TRUE, duplex printing is enabled starting with the next sheet. *One* way to select paper trays is with this PostScript extension operator: integer setpapertray -- ------------ If you're trying from an operating system to get duplex: VAX/VMS: $ PRINT/QUEUE=foo/PARAM=(SIDES=2) filename U*ix: $ lpr -Pqueue -K2 filename Or paper trays: VAX/VMS: $ PRINT/QUEUE=foo/PARAM=(INPUT_TRAY={top|middle|bottom|lcit}) filename U*ix: $ lpr -Pqueue -Itray filename [tray is {top|middle|bottom|lcit}] Of course, all of this is documented in the various manuals, but I wasn't sure of what resources you had available. Tim Lasko, Digital Equipment Corp., Westford MA (lasko@regent.enet.dec.com) Disclaimer: My opinions are my own; the facts can speak for themselves.