Koreader

Koreader SSH

By default koreader ssh does not support RSA ssh certificates. The solution is to generate an ECDSA key instead:

ssh-keygen -t ecdsa

Using Syncthing with Kobo Elipsa

Download the 32-bit ARM version of Syncthing from here and copy it to your device. Then run it with ./syncthing. Then you can access the web ui and set up connections.

As per this blog post You can add management scripts for starting and stopping syncthing on demand:

syncthing-start.sh

#!/bin/sh

/mnt/onboard/.adds/syncthing serve &

syncthing-stop.sh

#!/bin/sh

/usr/bin/pkill syncthing

Resources