How to revive an old reMarkable 2 over SSH
That forgotten e-paper tablet in your drawer isn't dead—it might just be confused about what year it is.
A developer recently detailed how they resurrected a 2021 reMarkable 2 that sat unused for four years. The device had broken cloud sync and a cryptic "error 0" during software updates. By logging in via root SSH over USB, they discovered severe clock drift was silently blocking firmware updates. Setting the date manually unblocked the updater to version 3.27.3.0, allowing them to bypass broken cloud sync using the tablet's built-in web server.
Why it matters: Outdated hardware often becomes e-waste once cloud services drop support for legacy software. Because reMarkable exposes root SSH access over USB (credentials are listed right in the device settings), owners can fix boot loops, re-enable system services, and manage files locally without relying on vendor servers.
Know this:
- Fix the clock first: An inaccurate device clock blocks updates. Connect over USB (
ssh root@10.11.99.1) and usetimedatectlto set the correct time. - Wi-Fi SSH changes: Software 3.22+ silently disables SSH over Wi-Fi. Run
rm-ssh-over-wlan onover USB to re-enable LAN access. - Bypass the cloud: Turn on local file transfers in Settings → General settings → Storage → USB web interface, then push PDFs directly using
curl.
Sometimes the best cloud sync is just a USB cable and a bash script.
Sources
- Resurrecting a reMarkable 2 over SSH — https://oskrim.github.io/hardware/2026/08/09/remarkable-over-ssh.html
- Hacker News Discussion — https://news.ycombinator.com/item?id=49230514

