- Newest
- Most votes
- Most comments
In order to get all Source files to install properly I tried 1GB swapfile but would not complete until I created a 2GB swapfile for the Orange Pi Zero.
sudo fallocate -l 2G /swapfile sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile
To get this part to work: Download and build the local proxy
I had to edit CMakeFiles.txt and change Boost configs so cmake could find boost :
set(BOOST_ROOT /srv/dependencies/boost_1_81_0) set(BOOST_INCLUDEDIR /srv/dependencies/boost_1_81_0/include) set(BOOST_LIBRARYDIR /srv/dependencies/boost_1_81_0/libs) set(Boost_USE_STATIC_LIBS ON) set(Boost_USE_DEBUG_RUNTIME OFF) #set_property(GLOBAL PROPERTY Boost_USE_MULTITHREADED ON)
Hi Seawinds.
ERROR: failed to solve: amazonlinux:latest: no match for platform in manifest
Your architecture is armv7l but amazonlinux:latest
only has images for amd64 and arm64. It's a known issue: https://github.com/aws-samples/aws-iot-securetunneling-localproxy/issues/72. You could follow the advice there and change the base image to Ubuntu:18.04.
Alternatively, you could try building from source, not via Docker. It seems there are some bumps with that too, but people are succeeding on Raspberry Pi:
Relevant content
- Accepted Answerasked 2 years ago
- AWS OFFICIALUpdated 6 months ago
- AWS OFFICIALUpdated 10 months ago
- AWS OFFICIALUpdated 2 years ago
Thank you Greg I will follow-up on these links.