Pagina 1 di 2

stampante hp

Inviato: gio 27 lug 2006, 11:36
da Emdel
Salve a tutti ragazzi!
Ho gia' usato l'opzione search ed ho trovato un po' di topic sull'argomento ma nessuno e' stato utile per risolvere il mio problema.
Allora ho una stampante hp con collegamento seriale, come distro ho la zenwalk 2.6 xon kde 3.5.2 e kernel 2.6.16.
Il problema e' nel kde printing manager, io aggiungo una stampante ma poi il cups mi va in errore e mi dice connection to cups server failed e che l'errore sta nel cups che io non ho mai toccato..
help!

Inviato: gio 27 lug 2006, 11:52
da Luci0
Collegamento seriale ???

tipo /dev/ttyS0 ... ???

.... forse qualche informazione sul modello etc. sarebbero molto utili

:-)

P.S. .... dai un occhio a slackware 4 dummies ....

Inviato: gio 27 lug 2006, 13:56
da Emdel
allora il modello e' il seguente :

hp deskjet 710c

Il problema era che nn avevo messo cups come script dall'avvio cosa che ho rimediato subito con serviceconfig, ora il problema e' che usano il kde printing manager nn so cosa mettere in location, e poi nn mi trova la 710c.
che devo mettere in location?
che posso fare?

Inviato: gio 27 lug 2006, 15:32
da Luci0
vedo che hai dato un occhio a slackware 4 dummies...
http://www.slacky.it/index.php?option=c ... &Itemid=82
comunque credo che la stampante sia collegata con una porta USB ...
... e non seriale

per verificare dando

Codice: Seleziona tutto

lsusb
dovresti ottenere una roba tipo

Codice: Seleziona tutto

Bus 005 Device 001: ID 0000:0000
Bus 004 Device 001: ID 0000:0000
Bus 003 Device 001: ID 0000:0000
Bus 003 Device 004: ID 04a9:106d Canon, Inc. S750 Printer
Bus 002 Device 001: ID 0000:0000
Bus 001 Device 001: ID 0000:0000
Bus 001 Device 002: ID 0457:0163 Silicon Integrated Systems Corp.
e così controlli se il sottosistema USB é ok

per verificare se CUPS é attivo
apri il browser e puntalo su

http://localhost:631 e segui le istruzioni dovresti riuscire a configurarla facilmente ...

Inviato: gio 27 lug 2006, 15:42
da Luci0
... Cattive notizie ho dato un occhio su
http://www.linuxprinting.org/
e come puoi vedere su
http://www.linuxprinting.org/show_print ... skJet_710C
l' installazione non e propriamente facile ...
... ma non dovrebbe essere impossibile :-)

Inviato: sab 29 lug 2006, 11:16
da Emdel
Grazie veramente x l'interessamento. Allora io ho visto i link che mi hai gentilmente postato e in particolare quello x la 710c dove trovo i driver, adesso in questa calda mattinata mi dedico all'installazione e ti faccio sapere :)

Inviato: sab 29 lug 2006, 18:32
da Emdel
L'installazione nn e' andata a buon fine, ho visitato la pagina, ma nn riesco a scaricare i driver :oops:
datemi unamno please

Inviato: dom 30 lug 2006, 14:38
da Emdel
Luci0 mi puoi dare gentilmente una mano?

Inviato: dom 30 lug 2006, 17:01
da Emdel
Ho scaricato tale driver pnm2ppa indispensabile per l'hp 710c. L'ho installato, e' bastato un semplice make ed un make install, ma non so come adoperarlo. E' palese che non posso piu' usufruire del kde printing manager e del cups, quindi devo fare tutto manualmente. Mi date gentilmente una mano?

Inviato: dom 30 lug 2006, 17:23
da Emdel
Usage
-----
To print a postscript file with this program, You may use a simple
shell script:

#!/bin/sh
cat $1 | \
gs -sDEVICE=ppmraw -sPAPERSIZE=letter -q -dNOPAUSE -r600 -sOutputFile=- - | \
pnm2ppa $2 $3 $4 $5 $6 $7 -i - -o - | lpr -l

Any valid ghostscript papersize like "legal", "a4", etc.
can be substituted for "letter"
(in fact, "letter" is the default, so the "-sPAPERSIZE=letter" is
not really needed.)


If this script is placed in /usr/local/bin/ppaprint ,

ppaprint file.ps

will print the postscript file file.ps in high quality color. Other
options are:

ppapprint file.ps --eco // economy color ink mode
ppaprint file.ps --bw // black and white
ppaprint file.ps --bw --eco // black and white economy mode

etc. In the example, up to six pnm2ppa options can be added (see
"man pnm2ppa" to list options, or "pnm2ppa --h" ).

You may wish to replace the ghostscript output device "ppmraw" with
"pbmraw" for only black and white printing - it is somewhat faster -
or "pgmraw" for greyscale images.

an ascii file could be printed in black and white with the script

#!/bin/sh
enscript -2rj $1 | \
gs -sDEVICE=pbmraw -sPAPERSIZE=letter -q -dNOPAUSE -r600 -sOutputFile=- - | \
pnm2ppa --bw $2 $3 $4 $5 $6 $7 -i - -o - | lpr -l

Integration into Printing Systems
-----------------------------------

(A) lpr, LPRng systems

You can set up printer filters. See the documentation for
your print spooler for information on how to do that.

The subdirectory lpd of the pnm2ppa distribution contains a
printer description file "printcap" and so filters to go with it.
See the README.lpd file there.

The subdirectory ppaSet of the pnm2ppa distribution contains a
software to help configuring the printer (and better, for each user in the
system), for both GTK and ncurses. Just see README file there. This
software is fully compatible with the previous one, not a replacement.


On some Linux distributions, (RedHat, Mandrake, ... etc.), packages
that install pnm2ppa and appropriate printer filters will be available
to do all this for you. On others, you must do this manually, for
example using the files in our lpd subdirectory. See lpd/README.lpd
in the pnm2ppa source distribution.


Note: the "foomatic" data base at http://www.linuxprint.org now supports
pnm2ppa, and produces scripts for configuring lpd-based systems. RedHat
use this system since RedHat 7.2


An older printfilter system for lpd systems that also supports pnm2ppa is
apsfilter (http://www.apsfilter.org).

---------------

(B) PDQ ("Print, Don't Queue")

PDQ is an alternative, spooler-free printing system
available from http://pdq.sourceforge.net

The pdq subdirectory of the pnm2ppa source provides a pdq driver, gs-pnm2ppa

----------------

(C) CUPS ("Common Unix Printing System")

pnm2ppa is now integrated into the CUPS printing system:
see http://www.cups.org. The "cupsomatic" scripts from the
http://www.linuxprinting.org site support pnm2ppa on CUPS.


"ppaSet": a Graphical User Interface for configuring pnm2ppa:
-------------------------------
There is also a new graphical (gtk-based) utility for creating
a pnm2ppa.conf configuration file and also can act as a front end to the
calibration utility calibrate_ppa. It is written by Javier Sedano,
and called ppaSet. Find it at http://sourceforge.net/projects/pnm2ppa.
Bel casino che devo fare x stampare! Help!

Inviato: dom 30 lug 2006, 17:58
da gioco
Emdel ha scritto:E' palese che non posso piu' usufruire del kde printing manager e del cups, quindi devo fare tutto manualmente.
Dal tuo messaggio seguente pare di no:
(C) CUPS ("Common Unix Printing System")

pnm2ppa is now integrated into the CUPS printing system:
see http://www.cups.org. The "cupsomatic" scripts from the
http://www.linuxprinting.org site support pnm2ppa on CUPS.

Inviato: mar 1 ago 2006, 23:23
da Luci0
emdel ...
penso che tu debba installare il pacchetto pnm2ppa e seguire le instruzioni che trovi su linuxprinting ovvero installare i PPD della stampante e copiarli nella directory /usr/share/cups/model/ o dove vedi altri file com l'estensione .ppd e riavviare cups con /etc/rc.d/rc.cupsd restart ... spero che tu riesca nell' impresa ... :-)

Inviato: mar 1 ago 2006, 23:31
da Firetux
la stampante è pienamente funzionante! Ne ho 2 io :D
da http://www.linuxprinting.org/show_print ... skJet_710C scarichi il .ppd e lo metti in /usr/share/cups/model/ dandogli permessi 644.
Poi installi pnm2ppa e anche foomatic-filters.
Riavvia cups e a questo punto installando la stampante la troverai elencata in cups

Inviato: gio 3 ago 2006, 21:12
da Emdel
ok grazie fire e luci0 riprovo e spero di riuscire in questa ardua impresa!

Inviato: gio 3 ago 2006, 21:18
da Emdel
Scusa firetux puoi essere leggermente piu' preciso?
Dove posso trovare foomatic-filters?