Le filtre suivant a été écrit pour une 660c à l'origine.
Fonctionne très bien pour une 690C, d'autres modèles aussi et
certainement la 670C
----------------------
Installing a Hewlett Packard DeskJet 660C with Linux
Assuming the printer is connected to /dev/lp1, add the following to the
/etc/printcap file:
# HP DeskJet 660C
lp|hpdj:\
:lp=/dev/lp1:\
:sd=/var/spool/lpd/hpDeskJet:\
:mx#0:\
:if=/var/spool/lpd/hpDeskJet/filter:\
:lf=/var/spool/lpd/hpDeskJet/errs:\
:sh:
Make sure that the permissions of /etc/printcap are r--r--r-- As root,
execute the following commands
cd /var/spool/lpd
mkdir hpDeskJet
chown root.daemon /var/spool/lpd/hpDeskJet
chmod ug=rwx,o=rx /var/spool/lpd/hpDeskJet
cd hpDeskJet
touch .seq errs status lock
chown root.daemon .seq errs status lock
chmod ug=rw,o=r .seq errs status lock
Create the following file /var/spool/lpd/hpDeskJet/filter
#!/bin/sh
/usr/bin/gs -dSAFER -dNOPAUSE -sPAPERSIZE=a4 \
-sDEVICE=cdj550 -dBitsPerPixel=32 -dShingling=1 -dDepletion=1 \
-sOutputFile=- -q -
Then execute the following command
chmod ug=rwx,o=rx filter
Finally, do a test print with
lpr /usr/lib/ghostscript/examples/colorcir.ps
---------------
Cyrille Lefranc