As I wrote earlier I’ve changed the cartridge in my old HP LaserJet 1200. Unfortunately the cartridge was broken so I get something that looks like brushstrokes across all pages, caused by the drum. So, I ordered a new printer and this time I decided for a HP Color LaserJet 2600n.
Since I’ll save my old printer to use for drafts I want to use just one print server for both my printers. Even if I’m using a print server I connected the printer to the network so I can print to it directly if I want. So, how do you make CUPS print thru the Color LaserJet 2600n?
I started by looking at the OpenPrinting web page and found my printer there, HP Color LaserJet 2600n. The recommended driver was the foo2hp which have great step-by-step instructions on the web page.
I run Debian Sarge on my print server, with that said I did like this:
-
$ sudo aptitude install foomatic-bin
- Needed by foo2hp as said on the web page
-
$ wget -O foo2zjs.tar.gz http://foo2zjs.rkkda.com/foo2zjs.tar.gz
- Download
-
$ tar zxf foo2zjs.tar.gz
- Unpack
-
$ cd foo2zjs
- Enter directory
-
$ make
- Compile the foo2hp package
-
$ ./getweb 2600n
- Get the HP LaserJet 2600n .ICM files
-
$ sudo make install
- Install foo2hp (driver, foomatic XML files, and extra files)
-
$ sudo /etc/init.d/cupsys restart
- Restart CUPS
Now I just browsed to my print server using Firefox and added the printer:
-
$ firefox http://192.168.0.1:631/
- Start the browser
- Click on Do Administration Tasks
- Click on Add printer
-
-
Name: HP_Color_LaserJet_2600n
- Remember, no spaces!
-
Location:
- Left empty, just a printer at home
-
Description: Color printer
-
Device: AppSocket/HP JetDirect
-
Device URI: socket://192.168.0.5:9100/
- This is the IP address to my printer
-
Make: HP
-
Model: HP Color LaserJet 2600n foomatic/foo2hp (recommended) (en)
- If the foo2hp package installed successfully you should see this alternative.
- Done! Now I had to change the Color Mode for the printer from the standard monochrome to Color (you do this if you click on Configure Printer)
- Try to print a test page, it should now print the CUPS test page with the color wheel in nice colors. No? Then google it.
I’m not saying that this is the way to do this but whis worked for me.