Installing Lexmark X1290 printer on 64-bit Ubuntu 10.10
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?
64-bit printing ubuntu-10.10
migrated from stackoverflow.com Nov 30 '10 at 14:38
This question came from our site for professional and enthusiast programmers.
add a comment |
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?
64-bit printing ubuntu-10.10
migrated from stackoverflow.com Nov 30 '10 at 14:38
This question came from our site for professional and enthusiast programmers.
add a comment |
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?
64-bit printing ubuntu-10.10
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?
64-bit printing ubuntu-10.10
64-bit printing ubuntu-10.10
edited Dec 1 '10 at 22:48
Mehper C. Palavuzlar
43.5k42175233
43.5k42175233
asked Nov 30 '10 at 14:21
BioGeekBioGeek
2972720
2972720
migrated from stackoverflow.com Nov 30 '10 at 14:38
This question came from our site for professional and enthusiast programmers.
migrated from stackoverflow.com Nov 30 '10 at 14:38
This question came from our site for professional and enthusiast programmers.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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.
add a comment |
Here is additional information needed as of 2018 (that is, to install Lexmark X1290 printer on Ubuntu 18.04):
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
The
z600
backend andrastertoz600
filter need the 32-bit versions of specific libs. I had to installlibstdc++5:i386
,libcups2:i386
andlibcupsimage2:i386
.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. Answer originally posted on Ask Ubuntu, where this question was duplicated.)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f216738%2finstalling-lexmark-x1290-printer-on-64-bit-ubuntu-10-10%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
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.
add a comment |
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.
add a comment |
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.
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.
answered Nov 30 '10 at 17:35
OliOli
337312
337312
add a comment |
add a comment |
Here is additional information needed as of 2018 (that is, to install Lexmark X1290 printer on Ubuntu 18.04):
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
The
z600
backend andrastertoz600
filter need the 32-bit versions of specific libs. I had to installlibstdc++5:i386
,libcups2:i386
andlibcupsimage2:i386
.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. Answer originally posted on Ask Ubuntu, where this question was duplicated.)
add a comment |
Here is additional information needed as of 2018 (that is, to install Lexmark X1290 printer on Ubuntu 18.04):
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
The
z600
backend andrastertoz600
filter need the 32-bit versions of specific libs. I had to installlibstdc++5:i386
,libcups2:i386
andlibcupsimage2:i386
.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. Answer originally posted on Ask Ubuntu, where this question was duplicated.)
add a comment |
Here is additional information needed as of 2018 (that is, to install Lexmark X1290 printer on Ubuntu 18.04):
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
The
z600
backend andrastertoz600
filter need the 32-bit versions of specific libs. I had to installlibstdc++5:i386
,libcups2:i386
andlibcupsimage2:i386
.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. Answer originally posted on Ask Ubuntu, where this question was duplicated.)
Here is additional information needed as of 2018 (that is, to install Lexmark X1290 printer on Ubuntu 18.04):
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
The
z600
backend andrastertoz600
filter need the 32-bit versions of specific libs. I had to installlibstdc++5:i386
,libcups2:i386
andlibcupsimage2:i386
.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. Answer originally posted on Ask Ubuntu, where this question was duplicated.)
answered Dec 28 '18 at 15:44
L. LevrelL. Levrel
32628
32628
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f216738%2finstalling-lexmark-x1290-printer-on-64-bit-ubuntu-10-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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