On what platform to run the Docker when setting the environment - Raspberry Pi or x86? #16
Replies: 3 comments 11 replies
-
Hi Alex, yes this repository support both ARM and X86 architecture, but I'm using it mostly on RaspberryPi (ARM). I never tested it under Raspbian, only under Ubuntu, but technically it shouldn't matter. Just to make sure, have you ran the following command for building on RPI?
|
Beta Was this translation helpful? Give feedback.
-
One other thing I can think of is OS configuration regarding limits. That's just an idea Example, the library file ibtsan.so could be too large to be opened in memory accordingly to your OS limit settings. I'm not very savy in that field but just for the sake of comparison, here what I got on my system: Command you need to run: ulimit -a My system ulimit bellow:core file size (blocks, -c) 0 |
Beta Was this translation helpful? Give feedback.
-
Hi Pascal, I managed to install on my Pi4 Ubuntu 20.10. I have a question related to the tagging after the successful Docker node build. I don't want to screw anything lol, so I want to make sure I give the correct version there.
Basically, I want to create a backup of the current container and the do a: docker save image that I save it for later. If that is the case I assume this one should be saved too if I want to transfer this docker container into another Pi 4. Thanks a lot for your time. All the best, |
Beta Was this translation helpful? Give feedback.
-
Hi,
Thank you very much for your time and effort in allowing us to take advantage of these technologies.
I am new to containerized type of development. I realize my question may sound trivial.
Here it is what I want to achieve:
I would like to run a Cardano pool on two Raspberry Pis (8 GB RAM version)
I installed Docker then downloaded your Cardano docker and followed the instructions how to compile the entire setup.
However, it fails during the compilation on the Pi 4B with the following error messages as shown below.
My understanding is that we can run this on the Raspberry Pi itself, but maybe that's not the case due to my lack of experience with this technology.
Could you please clarify if this can be run on the Pi or I need to create the docker image on a Linux machine x86 and then copy it to the Pi?
All the best,
Alex
pi@raspberrypi:/usr/local/lib $ sudo ld.gold -ltsan --verbose
GNU ld (GNU Binutils for Raspbian) 2.31.1
Supported emulations:
armelf_linux_eabi
armelfb_linux_eabi
..................................................
attempt to open //usr/local/lib/arm-linux-gnueabihf/libtsan.so failed
attempt to open //usr/local/lib/arm-linux-gnueabihf/libtsan.a failed
attempt to open //lib/arm-linux-gnueabihf/libtsan.so failed
attempt to open //lib/arm-linux-gnueabihf/libtsan.a failed
attempt to open //usr/lib/arm-linux-gnueabihf/libtsan.so failed
attempt to open //usr/lib/arm-linux-gnueabihf/libtsan.a failed
attempt to open //usr/local/lib/libtsan.so failed
attempt to open //usr/local/lib/libtsan.a failed
attempt to open //lib/libtsan.so failed
attempt to open //lib/libtsan.a failed
attempt to open //usr/lib/libtsan.so failed
attempt to open //usr/lib/libtsan.a failed
attempt to open //usr/arm-linux-gnueabihf/lib/libtsan.so failed
attempt to open //usr/arm-linux-gnueabihf/lib/libtsan.a failed
ld.gold: cannot find -ltsan
Beta Was this translation helpful? Give feedback.
All reactions