home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / periphs / printers / 3386 < prev    next >
Encoding:
Text File  |  1992-11-20  |  1.3 KB  |  42 lines

  1. Newsgroups: comp.periphs.printers
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!sdd.hp.com!hpscit.sc.hp.com!scd.hp.com!hpscdm!cupnews0.cup.hp.com!hppad.waterloo.hp.com!rypma
  3. From: rypma@waterloo.hp.com (Ted Rypma)
  4. Subject: Re: seeking (unix) hp deskjet 500 drivers
  5. Sender: news@waterloo.hp.com (NetNews)
  6. Message-ID: <By1uyJ.2wM@waterloo.hp.com>
  7. Date: Sat, 21 Nov 1992 04:54:18 GMT
  8. References: <ead.722045439@orion>
  9. Organization: HP Panacom Div Waterloo ON Canada
  10. X-Newsreader: TIN [version 1.1.4 PL6]
  11. Lines: 29
  12.  
  13. Eric De Mund (ead@cs.ucsb.edu) wrote:
  14. : i've got an hp deskjet 500 (w/ 16k receive buffer) hanging off of my
  15. : sparc 1. i'd like to be able to print .dvi, .ps, and .pbm files. is
  16. : there a dvi2dj converter for the first? has anyone gotten gnu
  17. : ghostscript to work with the second and third?
  18.  
  19. I routinely print postscript files (in color, too) to my DeskJet500C from
  20. an HP-UX host. For color, use device 'cdeskjet', not 'dj500c' - I've never
  21. gotten the latter to work right.
  22.  
  23. Following is the korn shell script I use to feed ghostscript the proper
  24. parameters:
  25.  
  26. if [ $# -eq 0 ]
  27. then
  28.     gs -dQUIET -dNOPAUSE -sDEVICE=djet500 -r300 -sOUTPUTFILE='|lp -ddj500 -oraw'
  29. -
  30. else
  31.     gs -dQUIET -dNOPAUSE -sDEVICE=djet500 -r300 -sOUTPUTFILE='|lp -ddj500 -oraw'
  32. $@ quit.ps
  33. fi
  34.  
  35. Regards,
  36.  
  37. Ted Rypma
  38. HP Panacom Division
  39.  
  40. (Speaking, of course, for himself only)
  41.