5

It has been a headache trying to install this printer. All the tutorials I found are for older versions of Ubuntu, and none of them work.

How can I install this printer?

Edit: HOWTO: Install PITA Lexmark Z600 Z615 and Dell Photo Printer 720

Setup Lexmark Z600 and X series printer on Ubuntu (i tried this one, only that it was translated to spanish, but it was the same instructions)

HOWTO: Lexmark Printers

I always get an error when extracting the converted tars with all of the tuts, invalid argument or the file doesn't exist.

Looks like, i was missing some ia32 libs .. and that caused the errors with the tar files, anyways i still can't print now i get this, cups-insecure-filter

How to install Lezmark Z600 series printer

Here, the OP offers 2 debs, i installed them on a 32 bit Ubuntu install, now the printer gets recognized but still can't print, 'cause i'm missing a filter, "rastertoz600".

Uri Herrera
  • 15,318

3 Answers3

5

HOWTO: Lexmark Printers Page 69 post 68 by VietCanada this worked!.

  1. install libstdc++5 from synaptic.
  2. install getlibs-all.deb.
  3. install lexmark.z600-0.4.deb.
  4. go to System/Administration/Printing.
  5. choose Lexmark z600 printer

Only seems to work for 64 bit though, on a 32 bit Ubuntu 11.04 Install, the package lexmark.z600-0.4.deb can't be installed due to a missing dependency libcupsys2 which i can't install.

Uri Herrera
  • 15,318
2

These steps just worked for me on Ubuntu 12.04, 32-bit with a very old Lexmark X1180 printer/scanner (I only want to print BTW).

1) Install libstdc++5 from synaptic.

2) Remove existing z600xxxx packages from synaptic (I think I had previously tried to install an older version of the z600 drivers)

3) Install lexmark.z600-0.4.deb.

4) Insert USB cable to printer.

5) Go to Printing via Ubuntu search.

6) Added new printer, chose the connected printer, then selected Lexmark manufacturer and right at the bottom the z600 driver from the installed package appeared in the list.

Mark

penreturns
  • 5,950
Mark
  • 21
0

In order to make the lexmark z600 or dell 720 (rebranded name) work in ubuntu 16 or 18,19,20 you have to:

  • 1. Install gdebi and download the 32 bit driver with:
  • sudo apt install gdebi-core
    sudo gdebi lexmark.z600-0.4.deb
    
  • 2. Install this 32bit libraries and restart cups
    sudo apt-get install libstdc++5:i386
    sudo apt-get install libcupsimage2:i386
    sudo /etc/init.d/cups restart 
    
  • 3. Open "Printers" having your printer connected, Click Add, select your printer

  • 4. Click Settings (gear) of the printer, Printer details, Select from database, then Lexmark. Select the new driver at the end of the Lexmark list

  • If printer does not print, look for errors
  • cat /var/log/cups/error_log | grep "error while"
    
    Ferroao
    • 959