UbuntuHelp:HardwareSupportComponentsPrinters/LexmarkMultifuncPrinters

出自Ubuntu中文

[编辑] Introduction

How to install a Lexmark X1100-series, probably working for other multifunc printers as well. Instructions for "Ubuntu 6.06LTS (Dapper drake)" Most is taken from http://www.ubuntuforums.org/showthread.php?t=49714 but it is adapted to Ubuntu 6.06LTS (Dapper drake) so that your system still will work after installation.

[编辑] Printers probably working

(List is taken from http://gentoo-wiki.com/HOWTO_Lexmark_Printers) Models similar to these should also work

  • Lexmark 5700 (using udev - black & white only)
  • Lexmark X1100 (using udev)
  • Lexmark X1110 (using devfs)
  • Lexmark X1130 (using devfs, only Printing)
  • Lexmark X1140 (using devfs, only Printing)
  • Lexmark X1150 (using devfs, using udev: black & white only)
  • Lexmark X1170 (using udev)
  • Lexmark X1185 (using devfs and udev)
  • Lexmark X1190 (using udev, only Printing; somewhat slow...)
  • Lexmark X1195 (using udev)
  • Lexmark Z25 (using devfs and udev)
  • Lexmark Z35 (on Ubuntu 5.04 Hoary, using udev) -- Had to install PPD manually due to several errors.
  • Lexmark Z55 (using udev)
  • Lexmark Z513 (using udev)
  • Lexmark Z515 (using devfs and udev)
  • Lexmark Z517 (using udev)
  • Lexmark Z600 (using udev)
  • Lexmark Z605 (using devfs and udev ) -- Personal note: thank you for this tutorial!
  • Lexmark Z605 (on Debian Sarge without neither devfs nor udev) -- thank you very much :-)
  • Lexmark Z611 (using devfs and udev)
  • Lexmark Z612 (devfs) - http://florian-konnertz.de thanks a lot for this detailed howto!
  • Lexmark Z615 (using devfs and udev)
  • Lexmark Z640 (even as a network printer)
  • Lexmark Z705 (using udev)
  • Dell A920 (using devfs, z600 driver)
  • Dell A920 (using udev, z600 driver)
  • Dell Photo 720 (using udev, z600 driver)
  • Lexmark P3150 (using udev, z600 driver, w/ some shading issues )

[编辑] Installing the Z600 Driver

NOTE: You can also simply select, as printer model, Lexmark Z600. 1. Open a terminal (Applications > Accessories > Terminal) and follow these steps 2. Make sure you have installed the following packages

sudo apt-get install libstdc++5 alien

The Lexmark Z600 Driver is 32bit. If you are using the 64bit architecture instead, you need to install instead the whole 32bit library:

sudo apt-get install ia32-libs alien

3. You have to download the Lexmark driver from http://gentoo-wiki.com/HOWTO_Lexmark_Printers

mkdir lexmark
cd lexmark
wget http://www.downloaddelivery.com/srfilecache/CJLZ600LE-CUPS-1.0-1.TAR.gz

4. Then you have to extract the content

tar xvzf CJLZ600LE-CUPS-1.0-1.TAR.gz

5. You now have a lot of files in your current directory, the driver is buried inside a shell-script, and you have to dig it out:

tail -n +143 z600cups-1.0-1.gz.sh > install.tar.gz

6. Unpack your new tar-archive:

tar xvzf install.tar.gz

7. Unfortunately Lexmark has only given you .rpm-packages, and you have to extract the content of those:

alien -t z600cups-1.0-1.i386.rpm
alien -t z600llpddk-2.0-1.i386.rpm

8. Now you have to extract the newly made tgz-files which contains the drivers, and copy them to their locations.

!!! Important: do exactly as written, otherwise your system may become ruined !!!

tar xvzf z600llpddk-2.0.tgz
tar xvzf z600cups-1.0.tgz
cd usr
sudo cp -a * /usr
sudo ldconfig # Reloading library-database

9. The drivers are now installed and copied to their locations. Test everything out with the following command:

/usr/lib/cups/backend/z600

10. If the output is something similar to this:

direct z600:/dev/usblp0 "Lexmark  Lexmark X1100 Series" "Lexmark Printer"

Then it is working. 11. Reload CUPS:

sudo /etc/init.d/cupsys restart

12. Make sure your printer is plugged in and go to System > Administration > Printing and double click New Printer. In the first screen, select your printer and click Forward. In the second screen, click Install Driver and navigate to /usr/share/cups/model/ then double click Lexmark-Z600-lxz600cj-cups.ppd.gz. Click Forward twice and your printer should be installed. If your printer does not show up, repeat this step.