Installing curl
Requirements
- have ssh access to your device (see SSH Access on remarkable.guide)
- make sure your tablet is connected to Wi-Fi
Setup variables
For rM1/2:
curl_arch=armv7
curl_sha256sum=779a1bd9f486fd5ff1da25d5e5bb99c58bc79ded22344f2b7ff366cf645a6630
For Paper Pro/Move:
curl_arch=aarch64
curl_sha256sum=1b050abd1669f9a2ac29b34eb022cdeafb271dce5a4fb57d8ef8fadff6d7be1f
Install curl
Download, verify, and allow execution:
wget -O curl --no-check-certificate \
https://ghproxy.net/https://github.com/moparisthebest/static-curl/releases/download/v8.11.0/curl-$curl_arch && \
echo "$curl_sha256sum curl" | sha256sum -c && chmod +x curl
Output should end with curl: OK
If you see sha256sum: WARNING: 1 of 1 computed checksums did NOT match instead, the file might have been modified (man-in-the-middle attack) and is not safe to run. Re-run the command above or download the file manually here (for rM1/2) or here (for Paper Pro/Move) and transfer it onto the device (to /home/root/curl).
Next steps
Notes
- curl version downloaded is v8.11.0
- static curl: https://github.com/moparisthebest/static-curl
- curl: https://curl.se/