Pagina 1 di 1
[Risolto] HP Laser Jet 1000
Inviato: giovedì 5 luglio 2007, 15:04
da JackJon
Ragazzi non c'è verso di far andare sto maledetta stampante... ma è poi mai possibile che devo sepre tribulare con le stampanti???
1 - Il Sistema-->Amministrazione-->Stampa è sempre lento, come lo è Aggiungi nuova stampante...
2 - Mi vede la stampante ma non trovo verso di farla funzionare...
Forse sbaglio qualcosa??? Comunque ecco i passi per l'installazione:

Ovviamente la stampante me la rileva il sistema...

Anche i driver li seleziona lui...

Di dare una descizione non me ne frega cosi faccio fine.
Praticamente mi limito a cliccare su avanti e basta...
ma quando vado a fare stampa pagina di prova... niente...
esce la scritta
1 job in printing e rimane li fermo...
la stampante propio non si muove... e io mi incazzo >:(...
Ho seguito anche questa guida (Presa da [url=http://'http://www.linuxprinting.org/show_printer.cgi?recnum=HP-LaserJet_1000']qui[/url])
Got an HP LaserJet 1000 working beautifully off a Fedora Core 3
system. You need to install the foo2zjs filter (not available as
a Fedora RPM to my knowledge).
1. wget
http://foo2zjs.rkkda.com/foo2zjs.tar.gz
2. tar xzvf foo2zjs.tar.gz
3. cd foo2zjs
4. make
5. ./getweb 1000
6. make install
7. make install-hotplug
Qualche aiutino come al solito???
Re: HP Laser Jet 1000
Inviato: giovedì 5 luglio 2007, 15:10
da JackJon
Ho risolto da solo ma comunque posto la soluzione, che magari a qualcuno può venir utile.
1 - Aggiungete la stampante tramite la procedura guidata.
2 - Aprite il terminale.
3 - Aprite il file /etc/hotplug/usb/hplj1000
sudo gedit /etc/hotplug/usb/hplj1000
* Non sono necessari i diritti d'amministratore potete toglere sudo
4 - Sostituite tutti i '/dev' con '/.dev'
5 - Salvate e chiudete e buona stampa
Per i più pigri che non vogliono cambiare i /dev con /.dev:
#!/bin/sh
# hplj1000:
# hplj1005:
# hplj1020:
#
# Hotplug script for HP1000/1005 USB laser printers. The model number
# that this script deals with is determined from the script name.
#
# Used to download firmware automatically into the printer when it
# is powered up or plugged into the USB port.
#
# Also, run this script once with the magic argument "install-usermap"
# to create the proper entry in the /etc/hotplug/usb.usermap file.
#
# The inspiration fo this script is from:
# Oscar Santacreu. Alicante-Spain (2002)
# Mike Morgan (2004)
#
# udev calls us twice on FC4! Just want /dev/usb/lp
case "$DEVNAME" in
/.dev/usb/usb*) exit;;
esac
PROGNAME="$0"
#
# Set $DEV to, e.g. /dev/usb/lp0, to force the device you want
# Else, leave it null to automatically detect the device
#
DEV=/.dev/usb/lp0
DEV=""
#
# Directory to find downloadable HP firmware files sihpMMMM.dl
#
FWDIR=/usr/share/foo2zjs/firmware
#
# Program used to determine USB id information
#
USBID=/bin/usb_printerid
#
# Figure out how to log our messages
#
if [ -t 1 ]; then
# Running from a tty...
log() {
echo "$PROGNAME: foo2zjs: $@"
}
elif [ -x /usr/bin/logger ]; then
# Have logger...
log() {
logger -t "$PROGNAME" -- "foo2zjs: $@"
}
else
# No logger...
log() {
echo "$PROGNAME: foo2zjs: $@" >> /var/log/messages
}
fi
#
# Figure out the model number from the name of this script
#
case "$0" in
*1000)
MODEL=1000
USB1=0x03f0 #Vendor
USB2=0x0517 #Model
;;
*1005)
MODEL=1005
USB1=0x03f0 #Vendor
USB2=0x1317 #Model
;;
*1018)
MODEL=1018
USB1=0x03f0 #Vendor
USB2=0x4117 #Model
;;
*1020)
MODEL=1020
USB1=0x03f0 #Vendor
USB2=0x2b17 #Model
;;
*)
log "Only HP LaserJet 1000, 1005, 1018, and 1020 are supported"
exit
;;
esac
#
# The special command line argument "install-usermap" will install
# the proper entry into the /etc/hotplug/usb.usermap file
#
case "$1" in
install-usermap)
if [ "$USB2" != "" ]; then
if [ -w /etc/hotplug/usb.usermap ]; then
USERMAP=/etc/hotplug/usb.usermap
elif [ -d /etc/hotplug/usb/ ]; then
USERMAP=/etc/hotplug/usb/foo2zjs.usermap
if [ ! -s $USERMAP ]; then
echo > $USERMAP
fi
else
log "No /etc/hotplug usermap!"
exit
fi
chmod 664 $USERMAP
ex - $USERMAP $_dev; then
log "... download successful."
else
log "... download failed."
fi
) &
return 0
}
#
# OK, now download firmware to any printers that need it
#
if [ "$DEV" != "" ]; then
#
# force downloading to a specific device
#
load1 "$DEV"
elif [ -x $USBID ]; then
#
# Sniff around for printers that need a firmware download
#
usblps=`find /.dev/usb -name lp*`" "`find /.dev -name usblp*`
for dev in $usblps; do
status=`$USBID $dev 2>/.dev/null | grep -y "hp LaserJet $MODEL"`
if [ "$status" != "" ]; then
# This is a LaserJet 100x
chmod 0666 $dev
status=`$USBID $dev | grep 'FWVER'`
if [ "$status" = "" ]; then
# Firmware is not yet loaded
load1 "$dev"
else
log "HP LaserJet $MODEL firmware already loaded into $dev"
fi
fi
done
else
log "HP LaserJet $MODEL firmware was not downloaded..."
log "...couldn't find $USBID and DEV is not set"
fi
Copia e incolla nel file...
Buona stampa (b2b)
Re: [Risolto] HP Laser Jet 1000
Inviato: sabato 29 settembre 2007, 11:58
da Argo666
Niko sei un grande! (good)
Re: [Risolto] HP Laser Jet 1000
Inviato: sabato 29 settembre 2007, 12:23
da JackJon
Argo666 ha scritto:
Niko sei un grande! (good)
Di niente son contento che sia venuta utile a qualcuno
Vorrei chiederti un favore: potresti vedere se durante la fase di boot a volte succede che quando il sistema rileva la stampante(te ne accorgi dal rumore della stampante...) il computer riavvia??? Grazie mille.
Re: [Risolto] HP Laser Jet 1000
Inviato: domenica 18 novembre 2007, 19:38
da tobebarbera
Io sicuramente sono particolarmente sfortunato, la mia stampante è una 1018, ho cambiato il /dev con il /.dev, ma niente....qualcuno mi puo aiutare?
Ho rifatto l'installazione dei driver mille volte....vi prego aiutatemi....
T.b.B.
Re: [Risolto] HP Laser Jet 1000
Inviato: lunedì 19 novembre 2007, 7:24
da JackJon
Vado di fretta e poi mercoledi iniziano gli esami :'(
Comunque intanto guarda qui(
http://openprinting.org/show_printer.cg ... erJet_1018)
poi se ti serve una mano chiedi che appena ho tempo e sono a casa ti aiuto

Re: [Risolto] HP Laser Jet 1000
Inviato: lunedì 19 novembre 2007, 8:48
da tobebarbera
Intanto ti ringrazio per l'aiuto...adesso sono fuori casa anche io per qualche giorno perchè ho esami :'( :'( :'(, ma appena torno a casa ci provo!
Grazie
T.b.B.
Re: [Risolto] HP Laser Jet 1000
Inviato: mercoledì 18 marzo 2009, 12:24
da urby72
Ciao scusa ma avevo una stampante uguale in ufficio, e con lo stesso problema. Ho installato e compilato i driver ufficiali hp, seguito la giuda in oggetto(quella dove sostituivo i /dev con /.dev ma non funziona...
mi potresti aiutare? ho installato una intrepid...
non è che devo disinstallare tutti i drievr hp con synaptic? per esempio il pacchetto hpoj???
Grazie!