*BSD News Article 9394


Return to BSD News archive

Received: by minnie.vk1xwt.ampr.org with NNTP
	id AA5702 ; Fri, 01 Jan 93 01:53:09 EST
From: reink@hpuamsa.neth.hp.com (Reinier Kleipool)
Date: Mon, 28 Dec 1992 12:40:04 GMT
Subject: Re: [386BSD] Help needed getting Laserjet II+ to work with 386BSD.
Message-ID: <21250010@hpuamsa.neth.hp.com>
Organization: HP-Sales Office-The Netherlands
Path: sserve!manuel.anu.edu.au!munnari.oz.au!spool.mu.edu!wupost!usc!sdd.hp.com!hpscit.sc.hp.com!hplextra!hpcc05!hpbbn!hpuamsa!reink
Newsgroups: comp.unix.bsd
References: <1992Dec24.001912.1@sunvax.sun.ac.za>
Lines: 85

/ hpuamsa:comp.unix.bsd / abs@sunvax.sun.ac.za / 11:19 pm  Dec 23, 1992 /
>I successfully installed the lp patches, and the port is seen.
>But when I print, the port or printer seem to just hang. The form feed
>light on the laser comes on, but that is all. Nothing else happens.
>lpc reports the status as printing, but thats it. If I cat directly to 
>/dev/lp ( set up as c 14 0) the same happens.
>
>Can anyone please help me ?


abs@cs.sun.ac.za.
----------

Yes!

   Probably the CR definition of the laserjet isn't setup correctly.
I use an input filter script to set all the correct parameters on the ljet.

here is my /etc/printcap file:
------------------------------ /etc/printcap ----------------------------

#	@(#)printcap	5.3 (Berkeley) 6/30/90

lp|local line printer:\
	:lp=/dev/lpt1:sd=/var/spool/lpd:lf=/var/log/lpd-errs:sh:\
	:if=/usr/local/filters/if_ljet3:\
	:vf=/usr/local/filters/vf_lett3:\
	:df=/usr/local/filters/df_ljet3:
------------------------------------------------------------------------
And this is my homebrew if= input filter script:
( be shure you have the execve magic number patch installed, otherwise
  #!/bin/sh will not work!)
-------------------------- /usr/local/filters/if_ljet3 -----------------

#!/bin/sh
printf "\033E\033&k2G"
cat -
printf "\033E"
--------------------------------------------------------------------------
And here an filter that attempts to print two pages side by side. (use lpr -d)
------------------------- /usr/local/filters/df_ljet3 --------------------

#!/bin/sh
# Page layout variables
LINES=76
TOPMARGIN=5
LEFTMARGIN=0
VMI=5
GUTTER=7
# internal variables: DO NOT CHANGE
width=`expr 162 + 2 \* $GUTTER`
# Reset the printer
printf "\033E"
# set line termination to cr->cr; lf->cr+lf; ff->cr+ff
printf "\033&k2G"
# select landscape orientation
printf "\033&l1O"
# setup the page: vmi, enable perf skip
printf "\033&l${VMI}c1L"
# Top margin TOPMARGIN lines
printf "\033&l${TOPMARGIN}E"
# Text Length $LINES lines
printf "\033&l${LINES}F"
# left margin of LEFTMARGIN chars
printf "\033&a${LEFTMARGIN}L"
# select 16.6 pitch font
printf "\033(s16.6H"
cat - | sed "//d" | pr -2 -n:${GUTTER} -w${width} -e -f -l${LINES}  -v -
printf "\033E"
---------------------------------------------------------------------------

Hope this helps,

Reinier Kleipool.


  /\
-(  )-/##---------------------------------------------------------------------
  }{/   ##    One has to look out  -- Overschie ------------------------------
..====.        for engineers- they  -- Reinier Kleipool  ----------------------
| [] |   begin with sewing machi-  -- Mail -----------------------------------
|    |   nes and  end up with the  -- X400: C=nl A=400net P=hp O=hp S=Kleipool
|    |   atomic bomb.....          -- desk: Reinier Kleipool/ hpitcb/75     --
| [] |              Marcel Pagnol  -- unix: reink@hpuamsa.neth.hp.com       --
------------------------------------------------------------------------------