I have a PostScript printer queue that, if I print multiple jobs to it, it
almost always stalls between each job.  I have to "give it a kick" with:

     lpc start all

to get it to go on and print more jobs.

Any idea why this might be happening?

I've attached my printcap.  I print PostScript to the "ps" queue, and
it just uses GhostScript as an output filter.

TIA for any suggestions,

Randall
#       @(#)printcap    5.3 (Berkeley) 6/30/90
# $Id: printcap,v 1.9 1998/02/04 12:09:06 ache Exp $

lp|LJ4P RAW:\
        :lp=/dev/lpt0:sd=/var/spool/lpd/lp:lf=/var/log/lpd-errs:\
        :mx#0:ff=\033E:fo:sh:tr=\033E:

text|LJ4P TEXT (UNIX->DOS EOL text conversion & PC-8 [not Roman-8] Fontset):\
        :lp=/dev/lpt0:sd=/var/spool/lpd/text:lf=/var/log/lpd-errs:\
        :mx#0:ff=\033E\033&k2G\033(10U:fo:sh:tr=\033E:

ps|LJ4P POSTSCRIPT (Ghostscript PS->PCL conversion):\
        :lp=/dev/lpt0:sd=/var/spool/lpd/ps:lf=/var/log/lpd-errs:\
        :of=/opt/bin/gslj:\
        :mx#0:sf:sh:
#!/bin/sh
#
# PS->PCL Filter Script -- Uses GhostScript 
#

TMPDIR=/usr/tmp
GSLIB=/usr/local/lib/ghostscript/fonts
PATH=/usr/local/bin:/usr/bin:$PATH
#PRINTER=lp
export TMPDIR GSLIB PATH

#exec gs -q -sDEVICE=laserjet -r300 -dNOPAUSE -- gslp.ps $*
#exec gs -q -sDEVICE=ljet4 -dNOPAUSE -sOutputFile=\|lpr gslp.ps -
exec gs -q -sDEVICE=ljet4 -dNOPAUSE -sOutputFile=- gslp.ps -

Reply via email to