Trying to install i386 package libc6:i386 on Raspberry Pi 3 B+ fails
The end goal is to get my Raspberry Pi to work as a print server providing AirPrint for a Brother DCP-195C printer they already have.
I'm trying to follow this answer on how to achive that.
So I already got to the point of where I installed the printer driver, but since that is only provided in compiled form for 32bit x86. So I tried to install Qemu to be able to use those.
I'm getting stuck on
$ sudo apt install libc6:i386
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libc6:i386 : Depends: libgcc1:i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
A bit more information:
$ sudo aptitude install libc6:i386
The following NEW packages will be installed:
gcc-6-base:i386{ab} libc6:i386 libgcc1:i386{ab}
0 packages upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 2,698 kB of archives. After unpacking 10.2 MB will be used.
The following packages have unmet dependencies:
gcc-6-base : Breaks: gcc-6-base:i386 (!= 6.3.0-18+rpi1+deb9u1) but 6.3.0-18+deb9u1 is to be installed
gcc-6-base:i386 : Breaks: gcc-6-base (!= 6.3.0-18+deb9u1) but 6.3.0-18+rpi1+deb9u1 is installed
libgcc1 : Breaks: libgcc1:i386 (!= 1:6.3.0-18+rpi1+deb9u1) but 1:6.3.0-18+deb9u1 is to be installed
libgcc1:i386 : Breaks: libgcc1 (!= 1:6.3.0-18+deb9u1) but 1:6.3.0-18+rpi1+deb9u1 is installed
The following actions will resolve these dependencies:
Keep the following packages at their current version:
1) gcc-6-base:i386 [Not Installed]
2) libc6:i386 [Not Installed]
3) libgcc1:i386 [Not Installed]
Accept this solution? [Y/n/q/?] n
*** No more solutions available ***
The following actions will resolve these dependencies:
Keep the following packages at their current version:
1) gcc-6-base:i386 [Not Installed]
2) libc6:i386 [Not Installed]
3) libgcc1:i386 [Not Installed]
Accept this solution? [Y/n/q/?] y
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.
How can I either make this work or is there another way to get the printer working?
linux printer raspberry-pi brother-printer
add a comment |
The end goal is to get my Raspberry Pi to work as a print server providing AirPrint for a Brother DCP-195C printer they already have.
I'm trying to follow this answer on how to achive that.
So I already got to the point of where I installed the printer driver, but since that is only provided in compiled form for 32bit x86. So I tried to install Qemu to be able to use those.
I'm getting stuck on
$ sudo apt install libc6:i386
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libc6:i386 : Depends: libgcc1:i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
A bit more information:
$ sudo aptitude install libc6:i386
The following NEW packages will be installed:
gcc-6-base:i386{ab} libc6:i386 libgcc1:i386{ab}
0 packages upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 2,698 kB of archives. After unpacking 10.2 MB will be used.
The following packages have unmet dependencies:
gcc-6-base : Breaks: gcc-6-base:i386 (!= 6.3.0-18+rpi1+deb9u1) but 6.3.0-18+deb9u1 is to be installed
gcc-6-base:i386 : Breaks: gcc-6-base (!= 6.3.0-18+deb9u1) but 6.3.0-18+rpi1+deb9u1 is installed
libgcc1 : Breaks: libgcc1:i386 (!= 1:6.3.0-18+rpi1+deb9u1) but 1:6.3.0-18+deb9u1 is to be installed
libgcc1:i386 : Breaks: libgcc1 (!= 1:6.3.0-18+deb9u1) but 1:6.3.0-18+rpi1+deb9u1 is installed
The following actions will resolve these dependencies:
Keep the following packages at their current version:
1) gcc-6-base:i386 [Not Installed]
2) libc6:i386 [Not Installed]
3) libgcc1:i386 [Not Installed]
Accept this solution? [Y/n/q/?] n
*** No more solutions available ***
The following actions will resolve these dependencies:
Keep the following packages at their current version:
1) gcc-6-base:i386 [Not Installed]
2) libc6:i386 [Not Installed]
3) libgcc1:i386 [Not Installed]
Accept this solution? [Y/n/q/?] y
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.
How can I either make this work or is there another way to get the printer working?
linux printer raspberry-pi brother-printer
Why can't libgcc1:i386 be installed (first)?
– Xen2050
Dec 25 '18 at 20:11
I addedaptitude
output.
– usbpc102
Dec 25 '18 at 23:01
The RaspPi has an ARM architecture, not i386. To be able to install libraries for multiple architectures on Debian, you need the multiarch version of some packages (in particulardpkg
andapt
). If it's a dependency problem, useaptitude
, and see what exactly the problem is, and if you need to upgrade some (seemingly unrelated) packages.
– dirkt
Dec 26 '18 at 7:03
dpkg is multiarch for sure:dpkg --print-foreign-architectures
printsi386
I'm not sure how to check with apt. And as you can see above I provided aptitude output and if I understand it correctly it tells me the i386 versions can't be installed because of the arm versions of the same packages.
– usbpc102
Dec 26 '18 at 17:41
add a comment |
The end goal is to get my Raspberry Pi to work as a print server providing AirPrint for a Brother DCP-195C printer they already have.
I'm trying to follow this answer on how to achive that.
So I already got to the point of where I installed the printer driver, but since that is only provided in compiled form for 32bit x86. So I tried to install Qemu to be able to use those.
I'm getting stuck on
$ sudo apt install libc6:i386
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libc6:i386 : Depends: libgcc1:i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
A bit more information:
$ sudo aptitude install libc6:i386
The following NEW packages will be installed:
gcc-6-base:i386{ab} libc6:i386 libgcc1:i386{ab}
0 packages upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 2,698 kB of archives. After unpacking 10.2 MB will be used.
The following packages have unmet dependencies:
gcc-6-base : Breaks: gcc-6-base:i386 (!= 6.3.0-18+rpi1+deb9u1) but 6.3.0-18+deb9u1 is to be installed
gcc-6-base:i386 : Breaks: gcc-6-base (!= 6.3.0-18+deb9u1) but 6.3.0-18+rpi1+deb9u1 is installed
libgcc1 : Breaks: libgcc1:i386 (!= 1:6.3.0-18+rpi1+deb9u1) but 1:6.3.0-18+deb9u1 is to be installed
libgcc1:i386 : Breaks: libgcc1 (!= 1:6.3.0-18+deb9u1) but 1:6.3.0-18+rpi1+deb9u1 is installed
The following actions will resolve these dependencies:
Keep the following packages at their current version:
1) gcc-6-base:i386 [Not Installed]
2) libc6:i386 [Not Installed]
3) libgcc1:i386 [Not Installed]
Accept this solution? [Y/n/q/?] n
*** No more solutions available ***
The following actions will resolve these dependencies:
Keep the following packages at their current version:
1) gcc-6-base:i386 [Not Installed]
2) libc6:i386 [Not Installed]
3) libgcc1:i386 [Not Installed]
Accept this solution? [Y/n/q/?] y
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.
How can I either make this work or is there another way to get the printer working?
linux printer raspberry-pi brother-printer
The end goal is to get my Raspberry Pi to work as a print server providing AirPrint for a Brother DCP-195C printer they already have.
I'm trying to follow this answer on how to achive that.
So I already got to the point of where I installed the printer driver, but since that is only provided in compiled form for 32bit x86. So I tried to install Qemu to be able to use those.
I'm getting stuck on
$ sudo apt install libc6:i386
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libc6:i386 : Depends: libgcc1:i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
A bit more information:
$ sudo aptitude install libc6:i386
The following NEW packages will be installed:
gcc-6-base:i386{ab} libc6:i386 libgcc1:i386{ab}
0 packages upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 2,698 kB of archives. After unpacking 10.2 MB will be used.
The following packages have unmet dependencies:
gcc-6-base : Breaks: gcc-6-base:i386 (!= 6.3.0-18+rpi1+deb9u1) but 6.3.0-18+deb9u1 is to be installed
gcc-6-base:i386 : Breaks: gcc-6-base (!= 6.3.0-18+deb9u1) but 6.3.0-18+rpi1+deb9u1 is installed
libgcc1 : Breaks: libgcc1:i386 (!= 1:6.3.0-18+rpi1+deb9u1) but 1:6.3.0-18+deb9u1 is to be installed
libgcc1:i386 : Breaks: libgcc1 (!= 1:6.3.0-18+deb9u1) but 1:6.3.0-18+rpi1+deb9u1 is installed
The following actions will resolve these dependencies:
Keep the following packages at their current version:
1) gcc-6-base:i386 [Not Installed]
2) libc6:i386 [Not Installed]
3) libgcc1:i386 [Not Installed]
Accept this solution? [Y/n/q/?] n
*** No more solutions available ***
The following actions will resolve these dependencies:
Keep the following packages at their current version:
1) gcc-6-base:i386 [Not Installed]
2) libc6:i386 [Not Installed]
3) libgcc1:i386 [Not Installed]
Accept this solution? [Y/n/q/?] y
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.
How can I either make this work or is there another way to get the printer working?
linux printer raspberry-pi brother-printer
linux printer raspberry-pi brother-printer
edited Dec 25 '18 at 23:01
usbpc102
asked Dec 25 '18 at 17:10
usbpc102usbpc102
1073
1073
Why can't libgcc1:i386 be installed (first)?
– Xen2050
Dec 25 '18 at 20:11
I addedaptitude
output.
– usbpc102
Dec 25 '18 at 23:01
The RaspPi has an ARM architecture, not i386. To be able to install libraries for multiple architectures on Debian, you need the multiarch version of some packages (in particulardpkg
andapt
). If it's a dependency problem, useaptitude
, and see what exactly the problem is, and if you need to upgrade some (seemingly unrelated) packages.
– dirkt
Dec 26 '18 at 7:03
dpkg is multiarch for sure:dpkg --print-foreign-architectures
printsi386
I'm not sure how to check with apt. And as you can see above I provided aptitude output and if I understand it correctly it tells me the i386 versions can't be installed because of the arm versions of the same packages.
– usbpc102
Dec 26 '18 at 17:41
add a comment |
Why can't libgcc1:i386 be installed (first)?
– Xen2050
Dec 25 '18 at 20:11
I addedaptitude
output.
– usbpc102
Dec 25 '18 at 23:01
The RaspPi has an ARM architecture, not i386. To be able to install libraries for multiple architectures on Debian, you need the multiarch version of some packages (in particulardpkg
andapt
). If it's a dependency problem, useaptitude
, and see what exactly the problem is, and if you need to upgrade some (seemingly unrelated) packages.
– dirkt
Dec 26 '18 at 7:03
dpkg is multiarch for sure:dpkg --print-foreign-architectures
printsi386
I'm not sure how to check with apt. And as you can see above I provided aptitude output and if I understand it correctly it tells me the i386 versions can't be installed because of the arm versions of the same packages.
– usbpc102
Dec 26 '18 at 17:41
Why can't libgcc1:i386 be installed (first)?
– Xen2050
Dec 25 '18 at 20:11
Why can't libgcc1:i386 be installed (first)?
– Xen2050
Dec 25 '18 at 20:11
I added
aptitude
output.– usbpc102
Dec 25 '18 at 23:01
I added
aptitude
output.– usbpc102
Dec 25 '18 at 23:01
The RaspPi has an ARM architecture, not i386. To be able to install libraries for multiple architectures on Debian, you need the multiarch version of some packages (in particular
dpkg
and apt
). If it's a dependency problem, use aptitude
, and see what exactly the problem is, and if you need to upgrade some (seemingly unrelated) packages.– dirkt
Dec 26 '18 at 7:03
The RaspPi has an ARM architecture, not i386. To be able to install libraries for multiple architectures on Debian, you need the multiarch version of some packages (in particular
dpkg
and apt
). If it's a dependency problem, use aptitude
, and see what exactly the problem is, and if you need to upgrade some (seemingly unrelated) packages.– dirkt
Dec 26 '18 at 7:03
dpkg is multiarch for sure:
dpkg --print-foreign-architectures
prints i386
I'm not sure how to check with apt. And as you can see above I provided aptitude output and if I understand it correctly it tells me the i386 versions can't be installed because of the arm versions of the same packages.– usbpc102
Dec 26 '18 at 17:41
dpkg is multiarch for sure:
dpkg --print-foreign-architectures
prints i386
I'm not sure how to check with apt. And as you can see above I provided aptitude output and if I understand it correctly it tells me the i386 versions can't be installed because of the arm versions of the same packages.– usbpc102
Dec 26 '18 at 17:41
add a comment |
0
active
oldest
votes
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%2f1387614%2ftrying-to-install-i386-package-libc6i386-on-raspberry-pi-3-b-fails%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f1387614%2ftrying-to-install-i386-package-libc6i386-on-raspberry-pi-3-b-fails%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
Why can't libgcc1:i386 be installed (first)?
– Xen2050
Dec 25 '18 at 20:11
I added
aptitude
output.– usbpc102
Dec 25 '18 at 23:01
The RaspPi has an ARM architecture, not i386. To be able to install libraries for multiple architectures on Debian, you need the multiarch version of some packages (in particular
dpkg
andapt
). If it's a dependency problem, useaptitude
, and see what exactly the problem is, and if you need to upgrade some (seemingly unrelated) packages.– dirkt
Dec 26 '18 at 7:03
dpkg is multiarch for sure:
dpkg --print-foreign-architectures
printsi386
I'm not sure how to check with apt. And as you can see above I provided aptitude output and if I understand it correctly it tells me the i386 versions can't be installed because of the arm versions of the same packages.– usbpc102
Dec 26 '18 at 17:41