Results 1 to 6 of 6

Thread: HOWTO: Install Lexmark Z55 printer

  1. #1
    Join Date
    Jun 2007
    Location
    UK
    Beans
    1,386
    Distro
    Ubuntu 8.04 Hardy Heron

    HOWTO: Install Lexmark Z55 printer

    This tutorial describes how to install a Lexmark Z55 printer on Hardy Heron.

    By default the wrong driver is installed for the Z55 which causes the printer to squeal and fail to print. A driver is available from the Lexmark website for Linux rpm distributions.

    Most of the information for this howto came from the excellent thread - HOWTO: Lexmark Printers.

    1. Download

    Download the file CJLZ55LE-CUPS-1.0-1.TAR.GZ from the Drivers and Downloads section of the Lexmark website. Select a Linux distribution such as Mandrake.

    2. Uninstall the existing driver

    System->Administration->Printing
    Expand "Local Printers"
    Click on "Lexmark_Z55" to select it
    Press the "Delete" button and confirm with OK

    3. Create directory

    Create a directory to work in and move the downloaded file into this new directory.
    Code:
    mkdir lexmark
    mv CJLZ55LE-CUPS-1.0-1.TAR.GZ lexmark
    4. Extract rpm files from the download

    Code:
    tail -n +143 lexmarkz55-CUPS-1.0-1.gz.sh > install.tgz
    tar -xvzf install.tgz
    5. Convert rpm files into deb packages

    First install the alien package if you have not already done so.
    Code:
    sudo apt-get install alien
    Now convert the files ignoring any warnings.
    Code:
    sudo alien lexmarkz55-CUPS-1.0-1.i386.rpm
    sudo alien z55llpddk-2.0-2.i386.rpm
    Save the deb files in a safe place. For subsequent installations you can use these files.

    6. Install the packages

    The deb files can now be installed using any method you prefer. To install from the command line type:
    Code:
    sudo dpkg -i z55llpddk_2.0-3_i386.deb
    sudo dpkg -i lexmarkz55-cups_1.0-2_i386.deb
    7. Unzip ppd file

    Code:
    cd /usr/share/cups/model
    sudo gunzip Lexmark-Z55-lxz55cj-cups.ppd.gz
    8. Install the new driver

    System->Administration->Printing
    Press the "New Printer" button
    Select "Lexmark Z55 USB #1"
    Press "Forward"
    Select "Provide PPD file"
    Click on the file icon on the right hand side of the box below
    Using the file picker select /usr/share/cups/model/Lexmark-Z55-lxz55cj-cups.ppd
    Press "Forward"
    Press "Apply"

  2. #2
    Join Date
    Dec 2008
    Beans
    1

    Re: HOWTO: Install Lexmark Z55 printer

    Well, the tutorial covers everything but everytime I type mv "the driver's name" it say it's not found. I need help, I am totally new to this linux thing I followed everything that was typed in the terminal but it keeps saying things cant be found. using 8.10

  3. #3
    Join Date
    Jul 2009
    Beans
    3

    Re: HOWTO: Install Lexmark Z55 printer

    OK I had this working way back in Ubuntu 9, but it broke and I couldn't get it back when I upgraded to 10. I finally have it working in Ubuntu 11.04 - the Natty Narwhal.

    Here's what I had to do:

    - Follow the instructions through step 3.

    - Right after putting "CJLZ55LE-CUPS-1.0-1.TAR.GZ" into the "lexmark" directory you just made, open the directory with your GUI browser, double click the file and extract the "CJLZ55LE-CUPS-1.0-1.TAR" file into the directory by dragging it. Next double click the "CJLZ55LE-CUPS-1.0-1.TAR" and extract the "lexmarkz55-CUPS-1.0-1.gz.sh" into the directory.

    -Now when you continue with step 4 "Extract rpm files from the download", it will work.

    Everything else goes pretty much like clockwork, except when you get to the installing printers part and choose new printer, the "provide PPD" part comes up before you can choose a printer. Don't attempt to look for the Lexmark Driver in the list, just paste the location of the file from the directions. It's OK! After you have provided the PPD, it will know what printer you are installing.

    In my case I am on a home wi-fi network with a ******* XP computer, which is sharing the printer, and I had no problem printing a test page, once the driver was loaded. Yay!
    Last edited by KMcCMedia; January 21st, 2011 at 11:22 PM. Reason: grammar

  4. #4
    Join Date
    Aug 2011
    Beans
    6

    Re: HOWTO: Install Lexmark Z55 printer

    Hello

    Is this tip also applyable in the version 11.04 of Ubuntu?

  5. #5
    Join Date
    Oct 2011
    Beans
    1

    Re: HOWTO: Install Lexmark Z55 printer

    I'd like to know if this tip is still applyable in ubuntu 11.04 ? Plus, when I try to print the test page it tells me : inactive - /usr/lib/cups/filter/rastorz55 failed.. What could I do ?

  6. #6
    Join Date
    May 2007
    Beans
    31

    Re: HOWTO: Install Lexmark Z55 printer

    For the /usr/lib/cups/filter/rastorz55 error:

    cd /usr/lib/cups
    ls -altr

    Verify that directories are searchable (they have the 'x' flag in three places), the files are executable, and the directories and files are owned by root. For me, I somehow had ownership of some of the directories and files, but most were owned by 'root'. To fix, I used:

    cd /usr/lib/cups
    sudo chown -R root:root .

    This will change the owner and group to root for everything in the cups directory and below.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •