Re: Printcap

Page principale

Répondre à ce message
Auteur: Cyrille Lefranc
Date:  
À: guilde
Sujet: Re: Printcap
>Frederic MANTEGAZZA wrote:
>
>Qualqu'un a-t-il deja configure son fichier printcap pour une
>HP deskjet 722C ?
>
>Je n'arrive pas a trouver un filtre qui fonctionne correctement. Ceux pour
>la 500c ou 550c n'envoient rien du tout, et celui pour la 800c met
>l'imprimante en default.



Essaye donc çà ...
----------------------

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