Why raspberry pi 4b claims that it's processor is armv7l when in official specification it's ARM v8? How to change it?How to known if an ARM library (.so) is compatible with the raspberry PIOfficial MongoDB Repo for ARM Processor for Debian baseHow to ensure that Terminal runs when I start X?When a device says it's “Linux-compatible,” does that mean it is compatible with Raspbian?raspberry emulation / nested virtualization - issue when booting with qemu-system-armHow do I do an online 'chkdsk' with Raspbian from the shell?Now that Raspbian Stretch has been released, should Jessie users rush out and do the upgrade? Is it safe?Can Etcher be used to customize the base Raspbian image?Why can I connect to my Raspberry Pi when I have internet sharing off, but not when it's on?Change GPIO pins for official Raspberry Pi 7" touchscreen
Why tantalum for the Hayabusa bullets?
What would the United Kingdom's "optimal" Brexit deal look like?
How would a lunar colony attack Earth?
Should students have access to past exams or an exam bank?
Should I put my name first, or last in the team members list
How can I convert a linear narrative into a branching narrative?
"Valet parking " or "parking valet"
Rampant sharing of authorship among colleagues in the name of "collaboration". Is not taking part in it a death knell for a future in academia?
Can machine learning learn a function like finding maximum from a list?
Was the Psych theme song written for the show?
How do I make my photos have more impact?
Is Ear Protection Necessary For General Aviation Airplanes?
Why does Earth need water in the Expanse?
Can you continue the movement of a Bonus Action Dash granted by Expeditious Retreat if your Concentration is broken mid-move?
Is it possible for a particle to decay via gravity?
Patio gate not at right angle to the house
What is my clock telling me to do?
How did astronauts using rovers tell direction without compasses on the Moon?
Is it possible to tell if a child will turn into a Hag?
Circle symbol compatible with square and triangle
Boots or trail runners with reference to blisters?
How can Paypal know my card is being used in another account?
What is this kind of symbol meant to be?
Are all French verb conjugation tenses and moods practical and efficient?
Why raspberry pi 4b claims that it's processor is armv7l when in official specification it's ARM v8? How to change it?
How to known if an ARM library (.so) is compatible with the raspberry PIOfficial MongoDB Repo for ARM Processor for Debian baseHow to ensure that Terminal runs when I start X?When a device says it's “Linux-compatible,” does that mean it is compatible with Raspbian?raspberry emulation / nested virtualization - issue when booting with qemu-system-armHow do I do an online 'chkdsk' with Raspbian from the shell?Now that Raspbian Stretch has been released, should Jessie users rush out and do the upgrade? Is it safe?Can Etcher be used to customize the base Raspbian image?Why can I connect to my Raspberry Pi when I have internet sharing off, but not when it's on?Change GPIO pins for official Raspberry Pi 7" touchscreen
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I need to run MongoDB docker container on Raspberry Pi 4B. My Raspberry has preset (already installed) Raspbian on SD card, I didn't install OS by myself.
MongoDB docker image supports arm64v8. But when I try to run container, it claims that there is no image available for my armv7 32-bit
machine.
Official Raspberry Pi 4B specification claims that it has ARMv8 processor so mongodb should install without any problems. It turns out it's not a problem with Mongo, as linux command lscpu
also claims my machine is armv7l
.
What would you recommend me to do now? Can I somehow configure raspbian so it claim it works on armv8
?
raspbian pi-4 64-bit
New contributor
add a comment |
I need to run MongoDB docker container on Raspberry Pi 4B. My Raspberry has preset (already installed) Raspbian on SD card, I didn't install OS by myself.
MongoDB docker image supports arm64v8. But when I try to run container, it claims that there is no image available for my armv7 32-bit
machine.
Official Raspberry Pi 4B specification claims that it has ARMv8 processor so mongodb should install without any problems. It turns out it's not a problem with Mongo, as linux command lscpu
also claims my machine is armv7l
.
What would you recommend me to do now? Can I somehow configure raspbian so it claim it works on armv8
?
raspbian pi-4 64-bit
New contributor
add a comment |
I need to run MongoDB docker container on Raspberry Pi 4B. My Raspberry has preset (already installed) Raspbian on SD card, I didn't install OS by myself.
MongoDB docker image supports arm64v8. But when I try to run container, it claims that there is no image available for my armv7 32-bit
machine.
Official Raspberry Pi 4B specification claims that it has ARMv8 processor so mongodb should install without any problems. It turns out it's not a problem with Mongo, as linux command lscpu
also claims my machine is armv7l
.
What would you recommend me to do now? Can I somehow configure raspbian so it claim it works on armv8
?
raspbian pi-4 64-bit
New contributor
I need to run MongoDB docker container on Raspberry Pi 4B. My Raspberry has preset (already installed) Raspbian on SD card, I didn't install OS by myself.
MongoDB docker image supports arm64v8. But when I try to run container, it claims that there is no image available for my armv7 32-bit
machine.
Official Raspberry Pi 4B specification claims that it has ARMv8 processor so mongodb should install without any problems. It turns out it's not a problem with Mongo, as linux command lscpu
also claims my machine is armv7l
.
What would you recommend me to do now? Can I somehow configure raspbian so it claim it works on armv8
?
raspbian pi-4 64-bit
raspbian pi-4 64-bit
New contributor
New contributor
New contributor
asked 8 hours ago
PiotrekPiotrek
1083 bronze badges
1083 bronze badges
New contributor
New contributor
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Docker containers use the same kernel as the host. There are two pre-compiled kernels distributed with Raspbian, an ARMv6 one for the model 1's and Zeros, and an ARMv7 one for the multicore models. The latter works on the 64-bit ARMv8 models as well,1 since they are backward compatible.
You cannot run a 64-bit userspace on top of a 32-bit kernel. While you could use a 64-bit kernel, this means compiling it yourself or finding a distro that has one.
Unfortunately Mongo DB dropped support for 32-bit platforms last year. Your best bet is to try a 64-bit distro; if you search around online you'll find blogs about this, eg.: https://andyfelong.com/2019/01/mongodb-3-2-64-bit-running-on-raspberry-pi-3-with-caveats/
- The oddball in this is really the Pi 2B, which is a 32-bit ARMv7 dual core. This is when the second stock kernel was introduced.
Thank you very much, I think I understand the problem now. It seems they the easiest way is to install an 64-bit distro. Do you recommend any? If some Linux distro supports Raspberry Pi 3, will it also run on RPi4?
– Piotrek
8 hours ago
You should make new questions about your additional questions.
– Ingo
7 hours ago
I'd start with Debian buster, which is what's used in the blog from the link. Raspbian is based on it (notice the current version is also "buster") and largely identical, which should make other things easier for you.
– goldilocks♦
7 hours ago
The oddball in this is really the Pi 2B, which is a 32-bit ARMv7 dual core
- isn't there two "versions" of the 2B? the latter having the same SOC as the 3B? (just to confuse the issue even more) (and both are quad core not dual core)
– Jaromanda X
3 hours ago
add a comment |
The Raspberry Pi 3 and 4 have 64-bit CPUs. However, Raspbian is a 32-bit operating system, so that SD card images work on all Pi models. Depending on where you're looking, the Pi will report armv6 or armv7 (usually armv7) although it's actually running in armv6 userland, and despite the hardware is actually armv8. Some other operating systems provide 64-bit images but they're less common.
Can you please explain the difference between your answer and the answer from @goldilocks?
– Ingo
7 hours ago
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("schematics", function ()
StackExchange.schematics.init();
);
, "cicuitlab");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "447"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
);
);
Piotrek is a new contributor. Be nice, and check out our Code of Conduct.
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%2fraspberrypi.stackexchange.com%2fquestions%2f101215%2fwhy-raspberry-pi-4b-claims-that-its-processor-is-armv7l-when-in-official-specif%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
Docker containers use the same kernel as the host. There are two pre-compiled kernels distributed with Raspbian, an ARMv6 one for the model 1's and Zeros, and an ARMv7 one for the multicore models. The latter works on the 64-bit ARMv8 models as well,1 since they are backward compatible.
You cannot run a 64-bit userspace on top of a 32-bit kernel. While you could use a 64-bit kernel, this means compiling it yourself or finding a distro that has one.
Unfortunately Mongo DB dropped support for 32-bit platforms last year. Your best bet is to try a 64-bit distro; if you search around online you'll find blogs about this, eg.: https://andyfelong.com/2019/01/mongodb-3-2-64-bit-running-on-raspberry-pi-3-with-caveats/
- The oddball in this is really the Pi 2B, which is a 32-bit ARMv7 dual core. This is when the second stock kernel was introduced.
Thank you very much, I think I understand the problem now. It seems they the easiest way is to install an 64-bit distro. Do you recommend any? If some Linux distro supports Raspberry Pi 3, will it also run on RPi4?
– Piotrek
8 hours ago
You should make new questions about your additional questions.
– Ingo
7 hours ago
I'd start with Debian buster, which is what's used in the blog from the link. Raspbian is based on it (notice the current version is also "buster") and largely identical, which should make other things easier for you.
– goldilocks♦
7 hours ago
The oddball in this is really the Pi 2B, which is a 32-bit ARMv7 dual core
- isn't there two "versions" of the 2B? the latter having the same SOC as the 3B? (just to confuse the issue even more) (and both are quad core not dual core)
– Jaromanda X
3 hours ago
add a comment |
Docker containers use the same kernel as the host. There are two pre-compiled kernels distributed with Raspbian, an ARMv6 one for the model 1's and Zeros, and an ARMv7 one for the multicore models. The latter works on the 64-bit ARMv8 models as well,1 since they are backward compatible.
You cannot run a 64-bit userspace on top of a 32-bit kernel. While you could use a 64-bit kernel, this means compiling it yourself or finding a distro that has one.
Unfortunately Mongo DB dropped support for 32-bit platforms last year. Your best bet is to try a 64-bit distro; if you search around online you'll find blogs about this, eg.: https://andyfelong.com/2019/01/mongodb-3-2-64-bit-running-on-raspberry-pi-3-with-caveats/
- The oddball in this is really the Pi 2B, which is a 32-bit ARMv7 dual core. This is when the second stock kernel was introduced.
Thank you very much, I think I understand the problem now. It seems they the easiest way is to install an 64-bit distro. Do you recommend any? If some Linux distro supports Raspberry Pi 3, will it also run on RPi4?
– Piotrek
8 hours ago
You should make new questions about your additional questions.
– Ingo
7 hours ago
I'd start with Debian buster, which is what's used in the blog from the link. Raspbian is based on it (notice the current version is also "buster") and largely identical, which should make other things easier for you.
– goldilocks♦
7 hours ago
The oddball in this is really the Pi 2B, which is a 32-bit ARMv7 dual core
- isn't there two "versions" of the 2B? the latter having the same SOC as the 3B? (just to confuse the issue even more) (and both are quad core not dual core)
– Jaromanda X
3 hours ago
add a comment |
Docker containers use the same kernel as the host. There are two pre-compiled kernels distributed with Raspbian, an ARMv6 one for the model 1's and Zeros, and an ARMv7 one for the multicore models. The latter works on the 64-bit ARMv8 models as well,1 since they are backward compatible.
You cannot run a 64-bit userspace on top of a 32-bit kernel. While you could use a 64-bit kernel, this means compiling it yourself or finding a distro that has one.
Unfortunately Mongo DB dropped support for 32-bit platforms last year. Your best bet is to try a 64-bit distro; if you search around online you'll find blogs about this, eg.: https://andyfelong.com/2019/01/mongodb-3-2-64-bit-running-on-raspberry-pi-3-with-caveats/
- The oddball in this is really the Pi 2B, which is a 32-bit ARMv7 dual core. This is when the second stock kernel was introduced.
Docker containers use the same kernel as the host. There are two pre-compiled kernels distributed with Raspbian, an ARMv6 one for the model 1's and Zeros, and an ARMv7 one for the multicore models. The latter works on the 64-bit ARMv8 models as well,1 since they are backward compatible.
You cannot run a 64-bit userspace on top of a 32-bit kernel. While you could use a 64-bit kernel, this means compiling it yourself or finding a distro that has one.
Unfortunately Mongo DB dropped support for 32-bit platforms last year. Your best bet is to try a 64-bit distro; if you search around online you'll find blogs about this, eg.: https://andyfelong.com/2019/01/mongodb-3-2-64-bit-running-on-raspberry-pi-3-with-caveats/
- The oddball in this is really the Pi 2B, which is a 32-bit ARMv7 dual core. This is when the second stock kernel was introduced.
answered 8 hours ago
goldilocks♦goldilocks
46k11 gold badges65 silver badges182 bronze badges
46k11 gold badges65 silver badges182 bronze badges
Thank you very much, I think I understand the problem now. It seems they the easiest way is to install an 64-bit distro. Do you recommend any? If some Linux distro supports Raspberry Pi 3, will it also run on RPi4?
– Piotrek
8 hours ago
You should make new questions about your additional questions.
– Ingo
7 hours ago
I'd start with Debian buster, which is what's used in the blog from the link. Raspbian is based on it (notice the current version is also "buster") and largely identical, which should make other things easier for you.
– goldilocks♦
7 hours ago
The oddball in this is really the Pi 2B, which is a 32-bit ARMv7 dual core
- isn't there two "versions" of the 2B? the latter having the same SOC as the 3B? (just to confuse the issue even more) (and both are quad core not dual core)
– Jaromanda X
3 hours ago
add a comment |
Thank you very much, I think I understand the problem now. It seems they the easiest way is to install an 64-bit distro. Do you recommend any? If some Linux distro supports Raspberry Pi 3, will it also run on RPi4?
– Piotrek
8 hours ago
You should make new questions about your additional questions.
– Ingo
7 hours ago
I'd start with Debian buster, which is what's used in the blog from the link. Raspbian is based on it (notice the current version is also "buster") and largely identical, which should make other things easier for you.
– goldilocks♦
7 hours ago
The oddball in this is really the Pi 2B, which is a 32-bit ARMv7 dual core
- isn't there two "versions" of the 2B? the latter having the same SOC as the 3B? (just to confuse the issue even more) (and both are quad core not dual core)
– Jaromanda X
3 hours ago
Thank you very much, I think I understand the problem now. It seems they the easiest way is to install an 64-bit distro. Do you recommend any? If some Linux distro supports Raspberry Pi 3, will it also run on RPi4?
– Piotrek
8 hours ago
Thank you very much, I think I understand the problem now. It seems they the easiest way is to install an 64-bit distro. Do you recommend any? If some Linux distro supports Raspberry Pi 3, will it also run on RPi4?
– Piotrek
8 hours ago
You should make new questions about your additional questions.
– Ingo
7 hours ago
You should make new questions about your additional questions.
– Ingo
7 hours ago
I'd start with Debian buster, which is what's used in the blog from the link. Raspbian is based on it (notice the current version is also "buster") and largely identical, which should make other things easier for you.
– goldilocks♦
7 hours ago
I'd start with Debian buster, which is what's used in the blog from the link. Raspbian is based on it (notice the current version is also "buster") and largely identical, which should make other things easier for you.
– goldilocks♦
7 hours ago
The oddball in this is really the Pi 2B, which is a 32-bit ARMv7 dual core
- isn't there two "versions" of the 2B? the latter having the same SOC as the 3B? (just to confuse the issue even more) (and both are quad core not dual core)– Jaromanda X
3 hours ago
The oddball in this is really the Pi 2B, which is a 32-bit ARMv7 dual core
- isn't there two "versions" of the 2B? the latter having the same SOC as the 3B? (just to confuse the issue even more) (and both are quad core not dual core)– Jaromanda X
3 hours ago
add a comment |
The Raspberry Pi 3 and 4 have 64-bit CPUs. However, Raspbian is a 32-bit operating system, so that SD card images work on all Pi models. Depending on where you're looking, the Pi will report armv6 or armv7 (usually armv7) although it's actually running in armv6 userland, and despite the hardware is actually armv8. Some other operating systems provide 64-bit images but they're less common.
Can you please explain the difference between your answer and the answer from @goldilocks?
– Ingo
7 hours ago
add a comment |
The Raspberry Pi 3 and 4 have 64-bit CPUs. However, Raspbian is a 32-bit operating system, so that SD card images work on all Pi models. Depending on where you're looking, the Pi will report armv6 or armv7 (usually armv7) although it's actually running in armv6 userland, and despite the hardware is actually armv8. Some other operating systems provide 64-bit images but they're less common.
Can you please explain the difference between your answer and the answer from @goldilocks?
– Ingo
7 hours ago
add a comment |
The Raspberry Pi 3 and 4 have 64-bit CPUs. However, Raspbian is a 32-bit operating system, so that SD card images work on all Pi models. Depending on where you're looking, the Pi will report armv6 or armv7 (usually armv7) although it's actually running in armv6 userland, and despite the hardware is actually armv8. Some other operating systems provide 64-bit images but they're less common.
The Raspberry Pi 3 and 4 have 64-bit CPUs. However, Raspbian is a 32-bit operating system, so that SD card images work on all Pi models. Depending on where you're looking, the Pi will report armv6 or armv7 (usually armv7) although it's actually running in armv6 userland, and despite the hardware is actually armv8. Some other operating systems provide 64-bit images but they're less common.
answered 7 hours ago
ben_nuttallben_nuttall
8685 silver badges8 bronze badges
8685 silver badges8 bronze badges
Can you please explain the difference between your answer and the answer from @goldilocks?
– Ingo
7 hours ago
add a comment |
Can you please explain the difference between your answer and the answer from @goldilocks?
– Ingo
7 hours ago
Can you please explain the difference between your answer and the answer from @goldilocks?
– Ingo
7 hours ago
Can you please explain the difference between your answer and the answer from @goldilocks?
– Ingo
7 hours ago
add a comment |
Piotrek is a new contributor. Be nice, and check out our Code of Conduct.
Piotrek is a new contributor. Be nice, and check out our Code of Conduct.
Piotrek is a new contributor. Be nice, and check out our Code of Conduct.
Piotrek is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Raspberry Pi Stack Exchange!
- 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%2fraspberrypi.stackexchange.com%2fquestions%2f101215%2fwhy-raspberry-pi-4b-claims-that-its-processor-is-armv7l-when-in-official-specif%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