Home > Tech > Getting an HP Color LaserJet CP1215 working on a Mac

Getting an HP Color LaserJet CP1215 working on a Mac

December 27th, 2008 Leave a comment Go to comments

Introduction
Installation
Color Management
Uninstall

Updates
11/30/2010: As of now, I no longer have the CP1215 and cannot do any further testing or troubleshooting beyond what is on this post and in the comments. The process works for most people, and should continue to do so into the future, at least for Tiger, Leopard and Snow Leopard. I can’t make any promises about Lion next year.

07/19/2010: On the advice of a commenter, added an additional keystroke to the $PATH section for Mac OS 10.4.x that solves the mystery of why some were getting “Ghostscript not installed” errors even after following the instructions.

12/31/2009: Added a section on uninstalling the drivers.

11/23/2009: Added a section detailing how to get around some errors people have been encountering during the process.

09/27/2009: After numerous reports of no printing, I tracked the problem to the new version of the drivers. Updated link to old version until compatibility can be worked out. Added boldface to the code bits to help differentiate them better, and added a donation button for fun and profit.

09/21/2009: Changed some information about downloading XCode, depending on your OS version.

09/07/2009: I received Snow Leopard, and the printer works fine after upgrading. Once I finish downloading XCode for Snow Leopard, I’ll redo the installation process and see if anything has changed.

02/11/2009: A new version of one of the software installs used here causes some printing problems, so I’ve updated to link to the last working version. I’ve also enabled comment RSS, so you can subscribe if you have a question instead of having to check back here to see if I’ve answered.

02/01/2009: I’ve added another section on getting better color management from the printer. This is by far the most popular post I’ve ever made, garnering several thousand hits in the past month, so HP really messed up with this one!
End updates

Introduction
When I moved to Alaska, I bought a bunch of technology equipment for my little home office: an iMac, an Epson scanner, and a little HP Color Laserjet CP1215. I eagerly unpacked it all and set it up after FedEx and UPS delivered everything to my door. I was particularly excited to have my own color laser printer, especially having found a great deal on it from HP. Imagine my dismay when, upon trying to add it to Mac OS X, I could not find any sort of driver for it on my computer. The printer install CD was only for Windows computers. HP’s website only listed Windows driver downloads.

Having spent the last 10+ years of my life working almost exclusively with HP LaserJets and Macs, I was surprised to find that this particular printer was not and would not ever be compatible with a Mac, according to HP. I apparently overlooked that little tidbit of information in the 3 days I spent researching it vs. the other cheap inexpensive color printers out there, assuming HP would have to be crazy to release a laser printer without Mac compatibility.

Much cursing ensued.

Since then, I’ve been saving everything I want to print as a PDF, opening Windows XP in a Parallels VM, and printing from there. It’s a hassle, and today I reached a breaking point. I created a nifty little business flyer in Pages (I’ll post it later), and the resulting PDF looked totally different than my original design! I needed to print directly from Pages, so I decided to see what Google would bring me. The news was good, if complicated. I’ll post my steps here, with links, for the betterment of humanity.

How to do it:
Note: I’ve only tested this on OS X 10.5 and 10.6 (Leopard and Snow Leopard), so I can’t guarantee this will work if you are on a different version of OS X.

You’ll be installing some Unix-based software, so say hello to the command line!

  1. Install Apple’s Developer Tools, if you haven’t already. It’s a free download (about 1GB!), but you’ll have to create an account on the Apple Developer site to get to it. Once you have your account and are logged in, go to Downloads, then Developer Tools, then click on whatever version of XCode Developer Tools (disk image) they list for your OS. For Snow Leopard (10.6.x), 3.2 is the latest; Leopard (10.5.x), 3.1.4 is the latest; and for Tiger (10.4.x), 2.5 is what you want. If you already have an ADC account and are running Snow Leopard, you can go straight to the XCode download site.

    After it downloads, it will open up and you’ll have to double-click the XCode Tools package installer to start the process. No restart is required.

  2. Download GhostScript, just click on the latest version I’ve updated this to link to a specific working version, 8.63. The 8.64 version disables color printing for some reason. I’ll file a bug report and update this when it’s fixed. It’s okay to use the linked version.
  3. Download foomatic-filters.
  4. Download foo2hp. The download link is a little ways down the page, and the downloaded file is actually called foo2zjs. I’ve updated the link to point to the last working version of the drivers, until I can work out some issues with the latest version.
  5. Compile the software you just downloaded. To do so, open Terminal in your /Applications/Utilities folder
  6. Navigate to wherever your downloads are stored. In 10.4 it’s usually on the Desktop (unless you’ve changed it), and in 10.5 it’s usually in the Downloads folder. Just type:
    cd Desktop or cd Downloads and hit Enter.
  7. The bits of software you downloaded should have automatically unarchived, so you should be able to go directly into their folders:
    cd ghostscript (after typing a few characters of the folder name, you can hit the Tab key and it will fill in the rest of the folder name)
    • If your computer didn’t automatically unarchive the downloads, type tar -zxf nameofdownloadedfile.tar.gz to unarchive them (replace nameofdownloadedfile.tar.gz with the names of the actual files you downloaded).
  8. Next, type: ./configure and hit enter. A lot of text will scroll by. It will eventually stop and hopefully there won’t be any errors.
  9. When you can type again, type in make and hit enter. More text, hopefully no errors.
  10. Finally, type sudo make install and hit enter. It will ask for your password. Enter it. If you don’t have a password set on your account, and you’re running Mac OS X 10.5, you’ll need to set a password in System Preferences: Accounts before this will work.
  11. Now we have to do almost the same for the next piece of the puzzle, the foomatic-filters. Type cd .. to go back one folder, then cd foomatic-filters-3.0.2 into the foomatic-filters folder.
    • Note: if you have trouble getting Terminal to get the full folder name after hitting Tab, that’s due to having two items that start with similar letters (eg. the downloaded file “foomatic-filters-3.0-current.tar” and the unarchived folder “foomatic-filters-3.0.2″).

      There are many ways to solve this. You can delete the downloaded tar.gz files after you’re sure the folders have been unarchived, you can type out more of the folder name until it is differentiated from the tar.gz file, or as Roger notes in the comments, you can type cd in the Terminal, then drag the folder icon to the Terminal window and it will fill in the correct path.

  12. Repeat the “./configure,” “make,” and “sudo make install” steps from before, hopefully receiving no errors!
  13. Now, navigate into the foo2zjs folder (cd .. then cd foo2zjs)
  14. This time, you start by typing make.
    • Note: Some people have reported receiving an error about ghostscript not being installed during this step. If this happens to you, please skip down to the Adding To Your $PATH section, then return here when you’ve completed those steps.
  15. Next, you’ll need to download the actual drivers for your printer. Since I have a 1215, I typed ./getweb 1215 and it downloaded the drivers.
  16. sudo make install one last time, and you’re almost ready to go.
  17. Restart your printer software with sudo make cups. An alternative to this is to just restart your computer.
  18. Open up your Printer Utility (10.4) or Print and Fax PreferencePane (10.5), and add the printer. OS X will see the 1215 attached via USB, and after searching for drivers, will find the foo2hp for 1215 driver!

Color Management

Now, to get better colors on your prints, you’ll have to change around the color profile for the printer. To do this, print something and in the print dialog box that opens, select “Printer Features” from the third drop-down menu (you may need to click the blue arrow button beside the printer drop-down menu). Here’s what it will look like (click to enlarge):
Printer Dialog 1

This is where you can set whether to print in color or black and white, what sort of paper to use, etc. Click on the menu named “Feature Sets,” and select “Adjustments.” This is where you can change how the printer decides how to print colors. These .icm files all contain color management instructions for the printer, and most of them don’t work very well. It was pointed out in the comments that the ones that aren’t specifically labeled for the CP1215 actually work the best, which makes this even more awesome.

I found that the .icm file named “HP 1600/2600 – hpclj2600n-0.icm” gave me smoother gradients in the test photo, but the file named “HP 1600/2600 – ICCFactory1 (default) gave me more vivid colors. If only we could combine their powers and make a super .icm file! Anyway, select the one you want to use.
Printer Dialog 2

After you’ve set everything the way you want, you can save it as a preset, so you don’t have to go through and set it all again the next time you print. Just click on the second drop-down menu that probably says “Standard,” and Save As…
Printer Dialog 3

You can make a preset for each type of paper, color option, etc. so life will be even easier after all this hard work.
Printer Dialog 4

Finally, if you’re keen to get a custom color profile made specifically for your printer (even printers of the same production model will have slight variations in printing), you can buy a custom profile from this ebay vendor: fotojimbo’s Custom ICC Profiles.

In my short bit of testing, I have found a couple of caveats:

  • To print in color, you’ll need to set it to color in the print dialog box, under “Printer Features” in the drop-down menu.
  • In “Printer Features,” setting the Bits Per Plane to “2″ will waste a lot of toner
  • Setting the paper type to HP Photo Paper and using HP Photo Paper is a disaster. All three of my test prints didn’t turn out: some of the toner didn’t get correctly applied, and spilled everywhere. I’ll still have to use Windows to print photos.
  • Color matching isn’t the greatest, I’ve had some trouble getting dark blues to turn out dark. But, it’s better than not being able to print from OS X at all.
  • See, Macs are simple!

    If you found this helpful, please consider encouraging me with a donation or even better, buy a photograph (everybody wins!).



    Adding To Your $PATH

    This section is specifically for people experiencing an error saying ghostscript isn’t installed during Step 14. Ghostscript is actually installed, but Terminal is dumb and can’t see where it is. Let’s correct that!

    • Mac OS X 10.5/10.6
      1. In the Terminal, type cd /etc/paths.d
      2. Type sudo pico local and enter your password.
      3. You’ll be given a mostly empty window where you can type. This is the pico text editor, one of the simplest command line text editors. Type /usr/local/bin and do not hit Enter or any other extra keys.
      4. Press and hold the Control key on the keyboard. While holding the Control key, press the ‘X’ key and then let go of both keys. Pico will ask you something like “Save modified buffer?” That’s nerd-speak for “Do you want to save your file?” Press the ‘Y’ key to save.
      5. Restart your computer
      6. Return to Step 14 and try again. Be sure you navigate back into the foo2zjs folder with the Terminal first!
    • Mac OS X 10.4
      1. In the Terminal, type cd (this puts the command line back in your home directory)
      2. Type pico .profile
      3. More than likely, you’ll be given a mostly blank window. If not, hit the Enter key once to make some space, then the Up arrow key to put the cursor in the space you just made.
      4. Type export PATH=/usr/local/bin:$PATH and do not hit Enter or any other extra keys.
      5. Press and hold the Control key on the keyboard. While holding the Control key, press the ‘X’ key and then let go of both keys. Pico will ask you something like “Save modified buffer?” That’s nerd-speak for “Do you want to save your file?” Press the ‘Y’ key and then the ‘Enter’ key to save.
      6. Restart your computer
      7. Return to Step 14 and try again. Be sure you navigate back into the foo2zjs folder with the Terminal first!

    Uninstalling

    If you need to delete the drivers, please copy and paste the following command in the Terminal:

    sudo rm -r /usr/local/bin/gs /usr/local/bin/foo* /usr/local/etc/foomatic /usr/local/share/ghostscript /usr/local/man/man1/foomatic* /usr/bin/foo2* /usr/share/foo2* /usr/libexec/cups/filter/foomatic*

Categories: Tech Tags: ,
  1. January 21st, 2010 at 02:05 | #1

    @TallSwede
    Sorry for the silence, I’m working on a big project and it doesn’t leave me much time for figuring out all the printer issues. Especially ones that pop up during compiling, and can have so, so many causes.

    I know it works for 10.4, as I’ve done the installation several times on my wife’s iBook. I’ll run it again tomorrow and see if I can find anything that looks like what you’re getting. 10.6 doesn’t list anything like what you’re getting, so it might be a compiler issue. Do you have the latest XCode available for 10.4?

  2. TallSwede
    January 26th, 2010 at 05:30 | #2

    @Ryan
    Hi Ryan,
    After reinstalling the latest Xcode (Xcode 2.5, dated 10/2007) this sequence completes!

    Some small comments to hone the 10.4 instructions:
    (1) At step [15] “./getweb 1215″ allow any connection-blocking utility such as Little Snitch, access
    (2) Before step [18], add: “Attach the powered-up printer to a USB socket”
    (3) Step [18] it is called “Printer Setup Utility” (not Printer Utility)
    Incidentally, you can also use System Preferences>Print & Fax>Click the [+] button to add a printer in 10.4, just like your 10.5 instructions.

    Many thanks – Donation on its way /DJ

  3. Ken McCormack
    January 28th, 2010 at 21:15 | #3

    Ryan,

    Great job but I got this in step 16,
    # Install current database files
    #
    ***
    *** WARNING! You don’t have directory /usr/share/foomatic/db/source/
    *** If you want support for foomatic printer configuration,
    *** then you will have to manually install these files…
    ***

    It seems to work but will I need these files at some point?

    thanks
    Ken

  4. John Sinclair
    January 31st, 2010 at 10:17 | #4

    That is fantastic. Thank you!

  5. Ryan
    February 2nd, 2010 at 12:04 | #5

    Hi Ryan,

    Thanks for some great instructions. However, I get stuck right at the end. When I go to add the printer I can see the CP1215 connected via USB but I can’t see the foo2hp driver. I have a drop down list of various printer manufacturers but can’t find the correct driver anywhere. The only other option I have is to select other which just opens up an explorer window to browse for files.

  6. Michael Tan
    February 2nd, 2010 at 21:48 | #6

    Hi Ryan, great work and lots of thanks for the sharing of information.

    Problem is… It shows up on my mac that the printer is not connected even it is already plugged in…

  7. Michael Tan
    February 2nd, 2010 at 23:45 | #7

    I finally got it to connect to my mac, but the printer did not move at all after I tried printing, even though it shows on my mac that the page has been spooled and printed… I’m using a 2-year old 15″ MacBook Pro with Snow Leopard…

  8. February 8th, 2010 at 15:45 | #8

    Hi Ryan
    Thanks for posting this. I’ve been doing the battle between my Mac and the HP printer for a while now.

    I’ve done everything up until Step 8:
    “Next, type: ./configure and hit enter. A lot of text will scroll by. It will eventually stop and hopefully there won’t be any errors.”

    Where do I type “./configure”?

  9. February 15th, 2010 at 09:05 | #9

    Everything went OK until I found the foo2hp for 1215 driver… but the printer does nothing when i try to print!! (iMac 2,4 10.5 leopard)

  10. Andrew
    February 15th, 2010 at 22:35 | #10

    Thanks for these instructions. My wife won an HP CP1215 at her annual office party, but we’re Mac users. After finding your instructions online, I did as you wrote and got my printer to work on my Mac desktop (so far so good at least).

  11. Zsolt32
    February 20th, 2010 at 12:15 | #11

    Hi!
    I have this printer too and a mac.
    You solved my very big problem in printing with my printer!
    Very very thanks!
    You’re a Genius!

  12. February 22nd, 2010 at 18:21 | #12

    Thanks so much, Ryan! I was able to (partially) print in the Chrome browser but my barcode image didn’t come through. In addition, I can’t seem to print in other apps like Safari. Any tips?

  13. lei
    March 2nd, 2010 at 08:52 | #13

    Hi Ryan Please help me out, I am stucked in the step 8 got this
    xl-ds-macbook-pro-15:ghostscript-8.63 dtb$ ./configure
    checking for gcc… no
    checking for cc… no
    checking for cl.exe… no
    configure: error: no acceptable C compiler found in $PATH
    See `config.log’ for more details.

    where did I do wrong wrong?

    I m using Macbook pro 15 , mac os 10.6

    thx!!!

  14. March 2nd, 2010 at 09:08 | #14

    @lei

    That looks like you need to install the latest XCode per Step 1.

  15. Betsy
    March 2nd, 2010 at 11:12 | #15

    Okay . . . I am NOT a programmer, not play one on TV.

    I downloaded the XCode, GhostScript, foomatic, foo2hp . . . Installed the XCode.

    But, when I open the Terminal application is shows the following (and won’t respond to the cd desktop instruction) :
    Last login: Tue Mar 2 11:05:37 on ttys000
    mac-users-macbook-pro-1192:~ macuser$ cd desktop
    mac-users-macbook-pro-1192:desktop macuser$

    I am grateful for whatever help you can give me!

    Please and thank you in advance.

    Betsy

  16. lei
    March 3rd, 2010 at 01:51 | #16

    @Ryan
    You are a Star!!!!!!
    I love you man! machine finally works!!!

  17. Ryan
    March 7th, 2010 at 02:19 | #17

    @Betsy

    It does respond to the cd command. You can see “desktop” is in the second line instead of “~”. You might have better luck just typing “cd” (without the quotes), and dragging and dropping the first folder (Ghostscript) onto the Terminal window, and hitting return after it autofills in the path to the folder. Then follow the rest of the instructions. When it’s time to switch to the next folder (foomatic-filters) repeat the dragging and dropping with that folder.

  18. Betsy
    March 7th, 2010 at 14:19 | #18

    I’m installing it on my iMac . . . I’m not sure why it’s saying macbook-pro-1192

  19. Ryan
    March 7th, 2010 at 14:47 | #19

    @Betsy

    Did you transfer information from your Macbook Pro to your iMac? You can look in your System Preferences:Sharing panel to see what your computer name is. That’s where the terminal is getting it’s information.

  20. mac
    March 11th, 2010 at 02:03 | #20

    Thanks very much this worked for me. HP should give a consultants role.

    Regards

    come on HP get youre ACT together

  21. mac
    March 11th, 2010 at 02:05 | #21

    mac :
    Thanks very much this worked for me. HP should give a consultants role.
    Regards
    come on HP get youre ACT together

    Mac OS X Version 10.6.2

  22. March 24th, 2010 at 02:37 | #22

    First off, many thanks and kudos to you, Ryan … I wouldn’t be printing on my CP1215 without this article.
    Had a lot of trouble getting it to work on my old Powerbook, though, so I thought I’d share some of my story to add some info.
    I followed your instructions to the letter and had no trouble installing the various components despite not being a codeslinger. But once installed, the printer would not print – the document showed up briefly in the print qeue, then vanished and nothing else happened. The first thing I tried was to install a newer version of Ghostscript but, as described by you, printing was b/w only. Unfortunately I was unable to uninstall the whole lot …
    I was running 10.5.8 at the time and had some issues with it, so I thought a nice format & install was in order. I installed 10.5.6, the last really stable version I had worked with. Next I retried following your instructions but at step 11 there was an error and your solution “adding to your $path” did produce only an “access denied” answer from the terminal. I then went to look for a version of ghostscript that would autoinstall and found it here (I believe it’s vers. 8):
    http://members3.jcom.home.ne.jp/imaxima/Site/Easy_Install_on_Mac_OS_X.html
    Once I had downloaded and installed (this is a dmg with installer package – no terminal required) I could finally resume your tutorial and complete the installation of my new printer … and it works!

    About color: I tried various profiles and found the one named “File km2340_2.icm” gave me the most accurate colors. Are there ways to use/convert icc profiles? Since Adobe CS comes with nice color profiles this might be worth looking into … any hints welcome.

  23. Juan guillermo
    March 26th, 2010 at 09:22 | #23

    amigo le escribo desde colombia muchas gracias por ese excelente manual saludos espero sigas publicando cosas asi de buenas suerte mostro y el manual funciono a la perfeccion

  24. mad dog
    April 2nd, 2010 at 03:58 | #24

    Thank you so much! I purchased this printer and after making the switch to the iMac did not want to replace a perfectly good working and actually very nice printer. This is the only tutorial available online and I do not understand why a cp1215 driver has not yet been developed for Mac. Thank you so much for your hard work and effort into working out how this can be used for the benefit of others. It is so helpful and appreciated. Very satisfied! Saved me money and time.

  25. Mary
    April 7th, 2010 at 19:25 | #25

    Hi,
    I have tried using this series of commands and everything went well, but I can’t figure out how to get the actual print driver. I tried the ./getweb command and that didn’t work. Which driver do I download when they are made for pcs. I’m running mac os 10.4. Thanks

  26. April 7th, 2010 at 21:14 | #26

    Desde España: Thanks very much this worked for me.

    Regards.

  27. viktorius
    April 13th, 2010 at 03:55 | #27

    hi

    when I typed “make” at step 9 it said: “make: *** No targets. Stop.”
    So what shall I did wrong ? When I start to do your instuctions in terminal, I have to run some other applications ?

    thnx !

  28. Andreas Stephan
    April 13th, 2010 at 12:35 | #28

    hi

    from Bavaria. First of all thank you, that’s really outstanding. I’m a java-developer and so the steps todo were clear for me.
    But I have one little problem. It prints still in black and white (no colors). I took the specific GhostScript Version 8.63 (like described in step 2) but colors are obviously disabled.
    I hope somebody has a hint for me.

    Regards!

  29. Andreas Stephan
    April 13th, 2010 at 12:52 | #29

    Again greetings from Bavaria. After reading (and translating to german ;-) and looking on the screenshots. I solve my problem.

    So I’m 100% happy.

    Ryan that was cool.
    I will drink a cold bavarian beer on you!

    Regards

  30. April 18th, 2010 at 13:09 | #30

    Great Instructions! Thanks for all your help :)

  31. Justin
    April 22nd, 2010 at 09:35 | #31

    Hi Ryan,

    Helpful so far, but I’m still not getting anything to print—am I linking to the old drivers correctly? *(i.e., do I need to do anything separate from what you’ve listed here?)

  32. Benjamin
    May 2nd, 2010 at 17:25 | #32

    Hey Ryan,
    At Step 14 this is the error I get

    # Dependencies…
    #
    ***
    *** Error: gs is not installed!
    ***
    *** Install ghostscript (gs) package
    ***
    make: *** [all-test] Error 1

    I then follow the instructions below

    In the Terminal, type cd /etc/paths.d
    Type sudo pico local and enter your password.
    You’ll be given a mostly empty window where you can type. This is the pico text editor, one of the simplest command line text editors. Type /usr/local/bin and do not hit Enter or any other extra keys.
    Press and hold the Control key on the keyboard. While holding the Control key, press the ‘X’ key and then let go of both keys. Pico will ask you something like “Save modified buffer?” That’s nerd-speak for “Do you want to save your file?” Press the ‘Y’ key to save.
    Restart your computer
    Return to Step 14 and try again. Be sure you navigate back into the foo2zjs folder with the Terminal first!

    When i restart my Mac I have the same error as the begining of this post…. i keep going in circles,

    A little help??? :)

  33. May 2nd, 2010 at 20:44 | #33

    @Benjamin

    What version of OS X do you have?

  34. Benjamin
    May 2nd, 2010 at 22:50 | #34

    hey Ryan!!! I Got PAST THE INSTALL OF EVERYTHING!!!!! YAYYYYY,

    here is the question now, when i print it comes up with an error in my status menu (when you click on the printer and it shows what you are printing) this is what it says…

    error: /usr/libexec/cups/filter/foomatic-rip failed

    Any idea of what i might have done wrong?

  35. Ryan
    May 3rd, 2010 at 12:50 | #35

    @Benjamin

    I haven’t seen that error before. You might try uninstalling and going through the process again. It looks like something didn’t take.

  36. Benjamin
    May 5th, 2010 at 16:35 | #36

    Hey… I had to reformat my Mac this weekend…. i tried to run thru everything again but this time it wont let me get past the first step….

    This is the error I get in Terminal;

    checking for gcc… no
    checking for cc… no
    checking for cl.exe… no
    configure: error: no acceptable C compiler found in $PATH

    Any idea of what I have done wrong? (Thx sooo much for your help)

  37. May 5th, 2010 at 17:02 | #37

    @Benjamin

    That error means you haven’t installed the Developer Tools.

  38. Benjamin
    May 5th, 2010 at 17:22 | #38

    ok.. deleted drivers and re-installed xcode and started all fresh.
    everything started and went good… restarted computer and added printer (driver recognized) and after the job is sent to the printer the print job disappears from print que and nothing happens.

    (I know I’m an idiot and appreciate your patience)
    any idea of what I’ve done wrong?

  39. Ryan
    May 9th, 2010 at 21:16 | #39

    YOU RULE! Worked flawlessly!

  40. Nehemías
    May 19th, 2010 at 12:34 | #40

    From Spain. Thank you for this mac terminal tutorial. Now my cp1215 is working at last. I promise to watch your fotos.

  41. Maya
    June 10th, 2010 at 12:03 | #41

    Thank you! My printer finally works, however, I cannot print in colours. Maybe I’m having a similar problem as person from Bavaria, but I cannot solve it. Can anyone please help me?

  42. Maya
    June 16th, 2010 at 11:50 | #42

    After playing with CUPS for a while I finally managed to get color prints. The problem I have now is that I cannot print from iWork’s pages, so I have to save all my work as PDF as only that prints. Any solutions?

  43. Tomas
    June 16th, 2010 at 14:09 | #43

    Hi,
    many thanks for this tutorial. It had worked for me before I upgraded to SnowLeopard but now I get error after step 9:

    ld: symbol(s) not found
    collect2: ld returned 1 exit status
    make: *** [obj/mkromfs] Error 1

    and if I try to finish the rest of the install then I can’t print although my computer finds the correct driver.

  44. Chris
    June 16th, 2010 at 15:21 | #44

    Thank you! I’m happy now!

  45. Ashley
    June 17th, 2010 at 10:21 | #45

    Hi,

    I have had success installing this on my old iMac, but recently got a new MacBook Pro and can’t seem to get past step 8. When I type ./configure for ghostscript I get an error:

    config.status: creating Makefile
    config.status: error: cannot find input file: cups/pstopxl.in

    I have checked the folder and this does in fact exist but for some reason terminal can’t find it. I have tried the “help” section on how to make terminal find things but that didn’t work and i also tried uninstalling and reinstalling ghostscript (several times….) but to no avail. Any help would be GREATLY appreciated! I love how this works on my iMac…so glad someone was able to figure this out!

    also this is what I get when I type make after the error (it was worth a shot right?)

    make: *** No targets specified and no makefile found. Stop.

  46. Michael
    June 25th, 2010 at 11:04 | #46

    Thank you! I experienced the same kind of disappointment as all above when I got home with this printer. I bought it in Germany and ‘dragged’ it to my home in The Netherlands – by train. Because the box didn’t fit in my suitcase, I had to discard it. Returning it to the store was therefore no option. Everything works fine now – I just ordered a photograph at Ryan’s site.

  47. Marek
    June 28th, 2010 at 12:47 | #47

    Great! Thanks a million!

  48. Daniel
    July 2nd, 2010 at 18:43 | #48

    Wow, it works splendid! Thanks a WHOLE lot for teaching me how to use this printer on the Mac. Perfect on 10.6.4. Used HP 1600/2600 – ICCFactory1 (default) for best results. Using File km2340_2.icm as Sven Wilms said made by blue pictures pink though!

  49. Daniel
    July 2nd, 2010 at 18:47 | #49

    Sorry, my, not by.

  50. Andy
    July 8th, 2010 at 13:07 | #50

    I, like you, just assumed that this printer was Mac compatible, but you know what happens when one assumes! Anyway, did a quick search and your site came up. Followed your VERY easy to understand instructions (thanks for that), and was up and running in no time. Thanks so much for averting a disaster. BTW – got this printer for $169 from buy.com, so it’s worth a little hassle for such a cheap color laser printer

Comment pages
1 ... 4 5 6 7 8 9 1064
  1. No trackbacks yet.