Please note the new address for this forum : forum.excito.org. The old address redirects here but I don't know for how long. Thanks !
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
Printer server
Printer server
I'm trying to install my HP 1020 printer. I follow the instructions in the manual and everything seems to work fine, but when I print something nothing happens. First the print job appears in the printer queue, then disappears without any error reports.
Any suggestions on what's wrong?
Regards
Kalle
Any suggestions on what's wrong?
Regards
Kalle
Hi Kalle,
Start by checking that the printer is online using the web-admin UI. If its not running, press start and try again. If that does not work could you please check the Cups status page, http://bubba:631/printers/, and see if that gives any indication on whats wrong.
/Tor
Start by checking that the printer is online using the web-admin UI. If its not running, press start and try again. If that does not work could you please check the Cups status page, http://bubba:631/printers/, and see if that gives any indication on whats wrong.
/Tor
Co-founder OpenProducts and Ex Excito Developer
Hi Tor. Yes, it's running. When I try to check http://bubba:631/printers/ it says that I "don't have permission to access the resource on this server."
/Kalle
/Kalle
Hi Kalle,
Sorry for the delay in the answers here.
I where checking the printer. And your assumption on support not being available is sort of true.
The printer in question requires a firmware to be loaded before it works correctly.
You can read more about it here, http://openprinting.org/show_printer.cg ... erJet_1020
Thus it should be possible to get it up and running. But it wont work "out of the box"
/Tor
Sorry for the delay in the answers here.
I where checking the printer. And your assumption on support not being available is sort of true.
The printer in question requires a firmware to be loaded before it works correctly.
You can read more about it here, http://openprinting.org/show_printer.cg ... erJet_1020
Thus it should be possible to get it up and running. But it wont work "out of the box"

/Tor
Co-founder OpenProducts and Ex Excito Developer
Hi again kalle,
Sorry again for the delay in my answer.
We have a hard time to support individual printers. So i cant give any promises on supporting this printer. I have temporarily put an untested firmware image on http://download.excito.net/software/sihp1020.dl Could you try to download this to your Bubba and then as root do
and check if the printing works after that.
/Tor
Sorry again for the delay in my answer.
We have a hard time to support individual printers. So i cant give any promises on supporting this printer. I have temporarily put an untested firmware image on http://download.excito.net/software/sihp1020.dl Could you try to download this to your Bubba and then as root do
Code: Select all
cat sihp1020.dl > /dev/usb/lp0
/Tor
Co-founder OpenProducts and Ex Excito Developer
Just an additiion here.
If one wants to get the firmware "auto loaded" here is a short description on how.
Start by creating a directory to hold the sihp1020.dl firmware file.
Create the script that will load the firmware. In the directory
/etc/udev/scripts create the file named hp-loadfw.sh with the following
content:
Change permissions on the script to make it executable:
Then create the rules file that will execute the above script when
printer is added. In /etc/udev/rules.d/ create the file
055-load-hp.rules with the content:
Its very important that the above text is in one line.
Reattach the printer and hopefully it should be operational.
/Tor
If one wants to get the firmware "auto loaded" here is a short description on how.
Start by creating a directory to hold the sihp1020.dl firmware file.
Code: Select all
mkdir /usr/lib/hp-fw
cp sihp1020.dl /usr/lib/hp-fw
/etc/udev/scripts create the file named hp-loadfw.sh with the following
content:
Code: Select all
#! /bin/sh
cat /usr/lib/hp-fw/sihp1020.dl > /dev/usb/lp0
exit 0
Code: Select all
chmod ugo+x /etc/udev/scripts/hp-loadfw.sh
printer is added. In /etc/udev/rules.d/ create the file
055-load-hp.rules with the content:
Code: Select all
BUS="usb", SYSFS{idProduct}=="2b17", SYSFS{idVendor}=="03f0",PROGRAM="/etc/udev/scripts/hp-loadfw.sh %k"
Reattach the printer and hopefully it should be operational.
/Tor
Co-founder OpenProducts and Ex Excito Developer