![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
Hello, Unregistered You are browsing a READ only archive of the main support categories pre 4/21/2008. You will not be able to post or reply any threads in this section.
|
|
Absolute Beginner Talk The perfect starting place to find out more about computers, Linux and Ubuntu. |
|
|
Thread Tools | Display Modes |
|
|
|
|
#1 |
|
Just Give Me the Beans!
![]() Join Date: Oct 2007
Beans: 62
Ubuntu 9.10 Karmic Koala
|
[SOLVED] HP LaserJet 1020 Recognized by Ubuntu 7.10, but does not print
Hi,
I've been trying to read about this problem, but most of the stuff I've found is regarding earlier versions of Ubuntu. Anyways, Ubuntu recognizes my printer fine, but, whenever I try and print something, nothing happens. The job appears to have gone though, as the printer icon appears in the notification area, but no printing. The jobs are backing up too, as I've tried to print a test page a few times, and it adds it as job number 5 or 6, indicating that there are other jobs still in the printer queue. I am puzzled by this whole problem, so any help would be appreciated. Thanks |
|
|
|
|
|
#2 |
|
Way Too Much Ubuntu
![]() |
Re: HP LaserJet 1020 Recognized by Ubuntu 7.10, but does not print
I've had a similar problem with my Officejet.
also, bump.
__________________
Ubuntu User #18957 | Toshiba User Without Sound? | Gutsy Documentation | Markin' Threads Solved |
|
|
|
|
|
#3 |
|
5 Cups of Ubuntu
![]() Join Date: Jul 2007
Beans: 18
|
Re: HP LaserJet 1020 Recognized by Ubuntu 7.10, but does not print
I installed one of these on Feisty on Friday. At first, it displayed like yours but wouldn't print anything either. I'm away from the machine and the information right now, but I was using a foo...something driver available on the net. It would configure and make, but no printing. I discovered it was not creating some needed directories, even when I ran the install as su. Luckily it has an uninstall with it.
That foo... driver may work for you (it has for a lot of people), though it didn't work for me. Then scouring Google, I found a deb for download in a forum--made by an individual and not in repositories. It worked like a charm. Hope you can find it. From what I understand HP Imaging can't install this one as it has no onboard firmware in the printer. |
|
|
|
|
|
#4 | |
|
Just Give Me the Beans!
![]() Join Date: Oct 2007
Beans: 62
Ubuntu 9.10 Karmic Koala
|
Re: HP LaserJet 1020 Recognized by Ubuntu 7.10, but does not print
Quote:
|
|
|
|
|
|
|
#5 |
|
Just Give Me the Beans!
![]() Join Date: Oct 2007
Beans: 62
Ubuntu 9.10 Karmic Koala
|
Re: HP LaserJet 1020 Recognized by Ubuntu 7.10, but does not print
Any suggestions? I really don't want to keep Windows around for printing.. ha.
|
|
|
|
|
|
#6 |
|
Just Give Me the Beans!
![]() Join Date: Oct 2007
Beans: 62
Ubuntu 9.10 Karmic Koala
|
Re: HP LaserJet 1020 Recognized by Ubuntu 7.10, but does not print
bump
|
|
|
|
|
|
#7 |
|
Ubuntu addict and loving it
![]() Join Date: Jan 2007
Beans: 6,092
Ubuntu 9.10 Karmic Koala
|
Re: HP LaserJet 1020 Recognized by Ubuntu 7.10, but does not print
I have a HP Laserjet 1000 which had the same problem in gutsy (worked in edgy and feisty). I found that the new Gutsy driver didn't seem to work. The solution for me was to get different drivers, which can be found at:
http://foo2zjs.rkkda.com/ which was referenced by this thread: http://ubuntuforums.org/showthread.php?t=583143#4 For the LJ1020, change the applicable line in the instructions to Code:
./getweb 1020 Good luck. Last edited by drs305; November 5th, 2007 at 10:02 PM.. |
|
|
|
|
|
#8 | |
|
Just Give Me the Beans!
![]() Join Date: Oct 2007
Beans: 62
Ubuntu 9.10 Karmic Koala
|
Re: HP LaserJet 1020 Recognized by Ubuntu 7.10, but does not print
Quote:
Code:
# # Dependencies... # # ... OK! # cc -O2 -Wall -o foo2zjs foo2zjs.o jbig.o jbig_tab.o /usr/bin/ld: cannot open output file foo2zjs: Is a directory collect2: ld returned 1 exit status make: *** [foo2zjs] Error 1 brandon@brandon-desktop:~/foo2zjs$ sudo ./getweb 1020 sihp1020.img i then get this... Code:
(c) Copyright Hewlett-Packard 2005 Code:
# # Dependencies... # # ... OK! # cc -O2 -Wall -o foo2zjs foo2zjs.o jbig.o jbig_tab.o /usr/bin/ld: cannot open output file foo2zjs: Is a directory collect2: ld returned 1 exit status make: *** [foo2zjs] Error 1 Is it not installing correctly? |
|
|
|
|
|
|
#9 |
|
Ubuntu addict and loving it
![]() Join Date: Jan 2007
Beans: 6,092
Ubuntu 9.10 Karmic Koala
|
Re: HP LaserJet 1020 Recognized by Ubuntu 7.10, but does not print
When I ran the script exactly as it was posted it ran perfectly.
Did you cut & paste each line to prevent mistakes.It is possible I have a typo in my post so I'd try to use the same steps but off the original post. You shouldn't get any errors. And I'm not surprised that your's didn't work - with the foo2zjs errors you wouldn't get the right drivers, which is why we were having problems in the first place. I'll try to analyze your output but I'm pretty new at this stuff and hopefully someone else will chime in. Added: The link references aren't that clear as to where to start. Here are the notes I took and the commands I followed (change 1000 to 1020). Make sure when you cd/ you are going to the location of the foo2zjs folder. In my case, I was at the ~/ prompt when I began running the commands in terminal. You want to be inside the foo2zjs directory when you run the MAKE command. Code:
sudo apt-get install build-essential wget -O foo2zjs.tar.gz http://foo2zjs.rkkda.com/foo2zjs.tar.gz tar zxf foo2zjs.tar.gz cd /home/<yournamehere>/foo2zjs make ./getweb 1000 sudo make install sudo make install-hotplug sudo make cups This is the part of the script I didn't have to get to. If you have to go further, substitute 1020 for 1000 Code:
gksudo gedit /etc/hotplug/usb/hplj1000 # Else, leave it null to automatically detect the device # DEV=/dev/usb/lp0 #DEV= "" Code:
sudo gnome-cups-manager Last edited by drs305; November 5th, 2007 at 09:56 PM.. |
|
|
|
|
|
#10 |
|
Just Give Me the Beans!
![]() Join Date: Oct 2007
Beans: 62
Ubuntu 9.10 Karmic Koala
|
Re: HP LaserJet 1020 Recognized by Ubuntu 7.10, but does not print
Ok, so I ran it again, and this time everything worked. Not sure why it didn't the first time around, I copied and pasted. But, now, when I use the gutsy printer setup, I also get the recommended foo driver, plus the three new ones. However, still no dice. I guess I'll try the other three new drivers it installed? See what happens.
|
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|