Installing Lexmark X1290 printer?
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
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?
10.10 64-bit printing
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?
10.10 64-bit printing
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
10.10 64-bit printing
edited Nov 30 '10 at 15:31
Jorge Castro
36k105422617
36k105422617
asked Nov 30 '10 at 15:24
BioGeekBioGeek
246315
246315
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.
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
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)
add a comment |
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
});
}
});
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%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
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.
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
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.
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
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 15:38
Oli♦Oli
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
add a comment |
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
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)
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)
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)
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)
answered Dec 28 '18 at 15:22
L. LevrelL. Levrel
1113
1113
add a comment |
add a comment |
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.
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%2faskubuntu.com%2fquestions%2f15537%2finstalling-lexmark-x1290-printer%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