Installing Lexmark X1290 printer?












3















I'm trying to install the Lexmark X1290 printer on a 64-bit Ubuntu 10.10 system. I previously had this printer working flawlessly on a 32-bit Ubuntu 10.04.



I'm following the instructions from http://www.trodrigues.net/wiki/linux:ubuntu:lexmark_x1290 and using the Z600 series driver from Lexmark.



Create a directory named lexmark and unpack the driver:



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


Extract the driver from the install script:



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


And untar it:



tar -xvzf install.tar.gz


This generates 2 drivers (z600cups-1.0-1.i386.rpm and z600llpddk-2.0-1.i386.rpm) that then should be converted to .deb files with alien and installed with dpkg, but -as the filenames already indicate- the drivers are for 32-bit systems and not for 64-bit systems. Hence the error:



$ sudo dpkg -i z600cups_1.0-2_i386.deb 
dpkg: error processing z600cups_1.0-2_i386.deb (--install):
package architecture (i386) does not match system (amd64)
Errors were encountered while processing: z600cups_1.0-2_i386.deb


Any idea how I can get this to work?










share|improve this question





























    3















    I'm trying to install the Lexmark X1290 printer on a 64-bit Ubuntu 10.10 system. I previously had this printer working flawlessly on a 32-bit Ubuntu 10.04.



    I'm following the instructions from http://www.trodrigues.net/wiki/linux:ubuntu:lexmark_x1290 and using the Z600 series driver from Lexmark.



    Create a directory named lexmark and unpack the driver:



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


    Extract the driver from the install script:



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


    And untar it:



    tar -xvzf install.tar.gz


    This generates 2 drivers (z600cups-1.0-1.i386.rpm and z600llpddk-2.0-1.i386.rpm) that then should be converted to .deb files with alien and installed with dpkg, but -as the filenames already indicate- the drivers are for 32-bit systems and not for 64-bit systems. Hence the error:



    $ sudo dpkg -i z600cups_1.0-2_i386.deb 
    dpkg: error processing z600cups_1.0-2_i386.deb (--install):
    package architecture (i386) does not match system (amd64)
    Errors were encountered while processing: z600cups_1.0-2_i386.deb


    Any idea how I can get this to work?










    share|improve this question



























      3












      3








      3








      I'm trying to install the Lexmark X1290 printer on a 64-bit Ubuntu 10.10 system. I previously had this printer working flawlessly on a 32-bit Ubuntu 10.04.



      I'm following the instructions from http://www.trodrigues.net/wiki/linux:ubuntu:lexmark_x1290 and using the Z600 series driver from Lexmark.



      Create a directory named lexmark and unpack the driver:



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


      Extract the driver from the install script:



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


      And untar it:



      tar -xvzf install.tar.gz


      This generates 2 drivers (z600cups-1.0-1.i386.rpm and z600llpddk-2.0-1.i386.rpm) that then should be converted to .deb files with alien and installed with dpkg, but -as the filenames already indicate- the drivers are for 32-bit systems and not for 64-bit systems. Hence the error:



      $ sudo dpkg -i z600cups_1.0-2_i386.deb 
      dpkg: error processing z600cups_1.0-2_i386.deb (--install):
      package architecture (i386) does not match system (amd64)
      Errors were encountered while processing: z600cups_1.0-2_i386.deb


      Any idea how I can get this to work?










      share|improve this question
















      I'm trying to install the Lexmark X1290 printer on a 64-bit Ubuntu 10.10 system. I previously had this printer working flawlessly on a 32-bit Ubuntu 10.04.



      I'm following the instructions from http://www.trodrigues.net/wiki/linux:ubuntu:lexmark_x1290 and using the Z600 series driver from Lexmark.



      Create a directory named lexmark and unpack the driver:



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


      Extract the driver from the install script:



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


      And untar it:



      tar -xvzf install.tar.gz


      This generates 2 drivers (z600cups-1.0-1.i386.rpm and z600llpddk-2.0-1.i386.rpm) that then should be converted to .deb files with alien and installed with dpkg, but -as the filenames already indicate- the drivers are for 32-bit systems and not for 64-bit systems. Hence the error:



      $ sudo dpkg -i z600cups_1.0-2_i386.deb 
      dpkg: error processing z600cups_1.0-2_i386.deb (--install):
      package architecture (i386) does not match system (amd64)
      Errors were encountered while processing: z600cups_1.0-2_i386.deb


      Any idea how I can get this to work?







      10.10 64-bit printing






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 30 '10 at 15:31









      Jorge Castro

      36k105422617




      36k105422617










      asked Nov 30 '10 at 15:24









      BioGeekBioGeek

      246315




      246315






















          2 Answers
          2






          active

          oldest

          votes


















          1














          I'm not familiar with this driver, but you could force the installation by running:



          sudo dpkg --force-architecture -i z600cups_1.0-2_i386.deb


          It might still not work, but it's worth a try.






          share|improve this answer
























          • This did indeed the trick! (a note to people in the same position and following the above mentioned tutorial: if you get a CUPS 'server-error-internal-error' after selecting the .ppd.gz, just gunzip and select the .ppd file.)

            – BioGeek
            Nov 30 '10 at 17:29











          • PS: Oli, if you have an account on superuser and provide the same answer to the the question there: superuser.com/questions/216738/… I'll accept it as the correct answer there as well.

            – BioGeek
            Nov 30 '10 at 17:32













          • Glad it worked and I've Answered that one too :)

            – Oli
            Nov 30 '10 at 17:36





















          1














          Here is additional information needed as of 2018 (that is, to install Lexmark X1290 printer on Ubuntu 18.04):





          1. The procedure fails at alien invocation on a 64-bit system:




            z600cups-1.0-1.i386.rpm is for architecture i386 ; the package cannot
            be built on this system




            I could "fool" it by converting to .tgz format first, then to .deb:



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


            After which the installation worked:



            sudo dpkg -i z600cups_1.0-2_all.deb 
            sudo dpkg -i z600llpddk_2.0-2_all.deb


          2. The z600 backend and rastertoz600 filter need the 32-bit versions of specific libs. I had to install libstdc++5:i386, libcups2:i386 and libcupsimage2:i386.


          3. After restarting CUPS, I did not have to manually select the PPD file. Model Z600 showed up in the list of Lexmark models.



          (Steps taken on Linux Mint 19, based on Ubuntu 18.04)






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f15537%2finstalling-lexmark-x1290-printer%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            I'm not familiar with this driver, but you could force the installation by running:



            sudo dpkg --force-architecture -i z600cups_1.0-2_i386.deb


            It might still not work, but it's worth a try.






            share|improve this answer
























            • This did indeed the trick! (a note to people in the same position and following the above mentioned tutorial: if you get a CUPS 'server-error-internal-error' after selecting the .ppd.gz, just gunzip and select the .ppd file.)

              – BioGeek
              Nov 30 '10 at 17:29











            • PS: Oli, if you have an account on superuser and provide the same answer to the the question there: superuser.com/questions/216738/… I'll accept it as the correct answer there as well.

              – BioGeek
              Nov 30 '10 at 17:32













            • Glad it worked and I've Answered that one too :)

              – Oli
              Nov 30 '10 at 17:36


















            1














            I'm not familiar with this driver, but you could force the installation by running:



            sudo dpkg --force-architecture -i z600cups_1.0-2_i386.deb


            It might still not work, but it's worth a try.






            share|improve this answer
























            • This did indeed the trick! (a note to people in the same position and following the above mentioned tutorial: if you get a CUPS 'server-error-internal-error' after selecting the .ppd.gz, just gunzip and select the .ppd file.)

              – BioGeek
              Nov 30 '10 at 17:29











            • PS: Oli, if you have an account on superuser and provide the same answer to the the question there: superuser.com/questions/216738/… I'll accept it as the correct answer there as well.

              – BioGeek
              Nov 30 '10 at 17:32













            • Glad it worked and I've Answered that one too :)

              – Oli
              Nov 30 '10 at 17:36
















            1












            1








            1







            I'm not familiar with this driver, but you could force the installation by running:



            sudo dpkg --force-architecture -i z600cups_1.0-2_i386.deb


            It might still not work, but it's worth a try.






            share|improve this answer













            I'm not familiar with this driver, but you could force the installation by running:



            sudo dpkg --force-architecture -i z600cups_1.0-2_i386.deb


            It might still not work, but it's worth a try.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 30 '10 at 15:38









            OliOli

            220k86558762




            220k86558762













            • This did indeed the trick! (a note to people in the same position and following the above mentioned tutorial: if you get a CUPS 'server-error-internal-error' after selecting the .ppd.gz, just gunzip and select the .ppd file.)

              – BioGeek
              Nov 30 '10 at 17:29











            • PS: Oli, if you have an account on superuser and provide the same answer to the the question there: superuser.com/questions/216738/… I'll accept it as the correct answer there as well.

              – BioGeek
              Nov 30 '10 at 17:32













            • Glad it worked and I've Answered that one too :)

              – Oli
              Nov 30 '10 at 17:36





















            • This did indeed the trick! (a note to people in the same position and following the above mentioned tutorial: if you get a CUPS 'server-error-internal-error' after selecting the .ppd.gz, just gunzip and select the .ppd file.)

              – BioGeek
              Nov 30 '10 at 17:29











            • PS: Oli, if you have an account on superuser and provide the same answer to the the question there: superuser.com/questions/216738/… I'll accept it as the correct answer there as well.

              – BioGeek
              Nov 30 '10 at 17:32













            • Glad it worked and I've Answered that one too :)

              – Oli
              Nov 30 '10 at 17:36



















            This did indeed the trick! (a note to people in the same position and following the above mentioned tutorial: if you get a CUPS 'server-error-internal-error' after selecting the .ppd.gz, just gunzip and select the .ppd file.)

            – BioGeek
            Nov 30 '10 at 17:29





            This did indeed the trick! (a note to people in the same position and following the above mentioned tutorial: if you get a CUPS 'server-error-internal-error' after selecting the .ppd.gz, just gunzip and select the .ppd file.)

            – BioGeek
            Nov 30 '10 at 17:29













            PS: Oli, if you have an account on superuser and provide the same answer to the the question there: superuser.com/questions/216738/… I'll accept it as the correct answer there as well.

            – BioGeek
            Nov 30 '10 at 17:32







            PS: Oli, if you have an account on superuser and provide the same answer to the the question there: superuser.com/questions/216738/… I'll accept it as the correct answer there as well.

            – BioGeek
            Nov 30 '10 at 17:32















            Glad it worked and I've Answered that one too :)

            – Oli
            Nov 30 '10 at 17:36







            Glad it worked and I've Answered that one too :)

            – Oli
            Nov 30 '10 at 17:36















            1














            Here is additional information needed as of 2018 (that is, to install Lexmark X1290 printer on Ubuntu 18.04):





            1. The procedure fails at alien invocation on a 64-bit system:




              z600cups-1.0-1.i386.rpm is for architecture i386 ; the package cannot
              be built on this system




              I could "fool" it by converting to .tgz format first, then to .deb:



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


              After which the installation worked:



              sudo dpkg -i z600cups_1.0-2_all.deb 
              sudo dpkg -i z600llpddk_2.0-2_all.deb


            2. The z600 backend and rastertoz600 filter need the 32-bit versions of specific libs. I had to install libstdc++5:i386, libcups2:i386 and libcupsimage2:i386.


            3. After restarting CUPS, I did not have to manually select the PPD file. Model Z600 showed up in the list of Lexmark models.



            (Steps taken on Linux Mint 19, based on Ubuntu 18.04)






            share|improve this answer




























              1














              Here is additional information needed as of 2018 (that is, to install Lexmark X1290 printer on Ubuntu 18.04):





              1. The procedure fails at alien invocation on a 64-bit system:




                z600cups-1.0-1.i386.rpm is for architecture i386 ; the package cannot
                be built on this system




                I could "fool" it by converting to .tgz format first, then to .deb:



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


                After which the installation worked:



                sudo dpkg -i z600cups_1.0-2_all.deb 
                sudo dpkg -i z600llpddk_2.0-2_all.deb


              2. The z600 backend and rastertoz600 filter need the 32-bit versions of specific libs. I had to install libstdc++5:i386, libcups2:i386 and libcupsimage2:i386.


              3. After restarting CUPS, I did not have to manually select the PPD file. Model Z600 showed up in the list of Lexmark models.



              (Steps taken on Linux Mint 19, based on Ubuntu 18.04)






              share|improve this answer


























                1












                1








                1







                Here is additional information needed as of 2018 (that is, to install Lexmark X1290 printer on Ubuntu 18.04):





                1. The procedure fails at alien invocation on a 64-bit system:




                  z600cups-1.0-1.i386.rpm is for architecture i386 ; the package cannot
                  be built on this system




                  I could "fool" it by converting to .tgz format first, then to .deb:



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


                  After which the installation worked:



                  sudo dpkg -i z600cups_1.0-2_all.deb 
                  sudo dpkg -i z600llpddk_2.0-2_all.deb


                2. The z600 backend and rastertoz600 filter need the 32-bit versions of specific libs. I had to install libstdc++5:i386, libcups2:i386 and libcupsimage2:i386.


                3. After restarting CUPS, I did not have to manually select the PPD file. Model Z600 showed up in the list of Lexmark models.



                (Steps taken on Linux Mint 19, based on Ubuntu 18.04)






                share|improve this answer













                Here is additional information needed as of 2018 (that is, to install Lexmark X1290 printer on Ubuntu 18.04):





                1. The procedure fails at alien invocation on a 64-bit system:




                  z600cups-1.0-1.i386.rpm is for architecture i386 ; the package cannot
                  be built on this system




                  I could "fool" it by converting to .tgz format first, then to .deb:



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


                  After which the installation worked:



                  sudo dpkg -i z600cups_1.0-2_all.deb 
                  sudo dpkg -i z600llpddk_2.0-2_all.deb


                2. The z600 backend and rastertoz600 filter need the 32-bit versions of specific libs. I had to install libstdc++5:i386, libcups2:i386 and libcupsimage2:i386.


                3. After restarting CUPS, I did not have to manually select the PPD file. Model Z600 showed up in the list of Lexmark models.



                (Steps taken on Linux Mint 19, based on Ubuntu 18.04)







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Dec 28 '18 at 15:22









                L. LevrelL. Levrel

                1113




                1113






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f15537%2finstalling-lexmark-x1290-printer%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

                    Mangá

                     ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕