From owner-freebsd-questions Thu Mar 13 06:36:21 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA29670 for questions-outgoing; Thu, 13 Mar 1997 06:36:21 -0800 (PST) Received: from zeus (zeus.gel.usherb.ca [132.210.70.7]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id GAA29589; Thu, 13 Mar 1997 06:35:55 -0800 (PST) Received: from pollux.gel.usherb.ca by zeus (4.1/SMI-4.1) id AA09285; Thu, 13 Mar 97 09:35:17 EST Received: by pollux.gel.usherb.ca (SMI-8.6/SMI-SVR4) id JAA21279; Thu, 13 Mar 1997 09:35:15 -0500 Date: Thu, 13 Mar 1997 09:35:15 -0500 (EST) From: "Alex.Boisvert" To: Michael Smith Cc: James FitzGibbon , questions@freebsd.org, hardware@freebsd.org Subject: Re: Poscript on an Brother HL760 ? In-Reply-To: <199703130613.QAA02843@genesis.atrad.adelaide.edu.au> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > > I'd appreciate hearing from anyone who has had any luck getting postcript > > output working on a Brother HL-760 printer. > > The short answer: don't bother. > Just to let you know that I set up my HP LasetJet III (with a PacificPage PostScript emulation cartridge) My /etc/printcap entry is as follow: # lp|local line printer|HP3 Postscript|hp3p:\ :lp=/dev/lpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs:sh:\ :if=/usr/local/libexec/psif: # And the /usr/local/libexec/psif file is just as the handbook entry: #!/bin/sh # # psif - Print PostScript or plain text on a PostScript printer # Script version; NOT the version that comes with lprps # Installed in /usr/local/libexec/psif # read first_line first_two_chars=`expr "$first_line" : '\(..\)'` if [ "$first_two_chars" = "%!" ]; then # # PostScript job, print it. # echo $first_line && cat && printf "\004" && exit 0 exit 2 else # # Plain text, convert it, then print it. # ( echo $first_line; cat ) | /usr/local/bin/a2ps && printf "\004" && exit 0 exit 2 fi I do not use ghostscript nor apsfilter and the printing is excellent. As you mentioned, the printing is slower than PCL5 but faster than using ghostscript... Alex.