Ubuntu 24.04.1 LTS | Lataa ja asenna | Tutustu yhteisöön | Blogi | Yritysten tarjoamat palvelutLiity Ubuntu Suomen seuraan muualla: Discourse, Facebook, Mastodon, Matrix, Telegram, X
Hei, Minulla itselläni on Lexmark X1155 tulostin, joka olisi kiva saada toimimaan Ubuntulla. Löysin jonkun ohjeen printtereiden asennuksesta, mutten ymmärtänyt paljoakaan.http://gentoo-wiki.com/HOWTO_Lexmark_PrintersApua kaivattaisiin! Ei tarvitsisi bootata windowsiin niin usein vaan printatakseen jotakin. Terveisin, PenttiR
Lexmark X1155 tulostin, joka olisi kiva saada toimimaan Ubuntulla.
Download the driver, save it to a desktop folder such as `lexmark` (I say _folder_ because extracting the driver is a messy process!).Obviously, exclude the comments to the right of the hash (#) marks, I include them only to explain the commands.$ mkdir lexmark$ mv CJLZ600LE-CUPS-1.0-1.TAR.gz lexmark # move the package to a folder. optional, but recommended.$ tar -xvzf CJLZ600LE-CUPS-1.0-1.TAR.gz # extract the driver.$ tail -n +143 z600cups-1.0-1.gz.sh > install.tar.gz # the sh script is broken for newer systems. use `tail` to extract the binary portion of the script.$ tar -xvzf install.tar.gz # extract the contents produced by tail$ alien -t z600cups-1.0-1.i386.rpm # convert unusable rpm packages to tgz.$ alien -t z600llpddk-2.0-1.i386.rpm # convert unusable rpm packages to tgz.$ sudo tar xvzf z600llpddk-2.0.tgz -C / # extract the tgz's to / putting the files in their right place$ sudo tar xvzf z600cups-1.0.tgz -C / # extract the tgz's to / putting the files in their right place$ sudo ldconfig # DO NOT SKIP THIS STEP or your printer backend won't find required libraries$ cd /usr/share/cups/model$ sudo gunzip Lexmark-Z600-lxz600cj-cups.ppd.gz # unzip the ppd, which should _not_ be gzippedThe driver is now installed. Restart the cups daemon:/etc/rc2.d/S19cupsys restartCheck whether the printer backend works;$ cd /usr/lib/cups/backend$ ./z600The output of the above command should be _similar_ to this:direct z600:/dev/usb/lp0 "Lexmark Lexmark Z600 Series" "Lexmark Printer"If you get no output, mount the usb filesystem.Add this to your /etc/fstab file:usbfs /proc/bus/usb usbfs devgid=14,devmode=0660 0 0Then just type: sudo mount usbfs. That should fix it.Now simply set up your printer through the System->Administration->Printing in gnome. Make sure you select the z600 driver, and you're golden.
Obviously, exclude the comments to the right of the hash (#) marks, I include them only to explain the commands.$ mkdir lexmark$ mv CJLZ600LE-CUPS-1.0-1.TAR.gz lexmark # move the package to a folder. optional, but recommended.$ tar -xvzf CJLZ600LE-CUPS-1.0-1.TAR.gz # extract the driver.$ tail -n +143 z600cups-1.0-1.gz.sh > install.tar.gz # the sh script is broken for newer systems. use `tail` to extract the binary portion of the script.$ tar -xvzf install.tar.gz # extract the contents produced by tail$ alien -t z600cups-1.0-1.i386.rpm # convert unusable rpm packages to tgz.$ alien -t z600llpddk-2.0-1.i386.rpm # convert unusable rpm packages to tgz.$ sudo tar xvzf z600llpddk-2.0.tgz -C / # extract the tgz's to / putting the files in their right place$ sudo tar xvzf z600cups-1.0.tgz -C / # extract the tgz's to / putting the files in their right place$ sudo ldconfig # DO NOT SKIP THIS STEP or your printer backend won't find required libraries$ cd /usr/share/cups/model$ sudo gunzip Lexmark-Z600-lxz600cj-cups.ppd.gz # unzip the ppd, which should _not_ be gzippedTarvitsisin apua.. En tajua mitään noista kommennoista jne.
man mkdir
man mv
man tar
man alien