Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evidlo/remarkable_syncthing
Self-hosting syncing solution for reMarkable
https://github.com/evidlo/remarkable_syncthing
remarkable-tablet syncthing
Last synced: 3 months ago
JSON representation
Self-hosting syncing solution for reMarkable
- Host: GitHub
- URL: https://github.com/evidlo/remarkable_syncthing
- Owner: Evidlo
- License: gpl-3.0
- Created: 2019-01-28T06:36:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-18T03:37:18.000Z (over 1 year ago)
- Last Synced: 2024-05-21T04:31:54.826Z (6 months ago)
- Topics: remarkable-tablet, syncthing
- Size: 19.5 KB
- Stars: 163
- Watchers: 5
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-reMarkable - reMarkable_syncthing - Syncthing on reMarkable. (Cloud Tools / Launchers)
README
# Syncthing on reMarkable
A guide for setting up Syncthing on a reMarkable.
## Installation
0. Install syncthing on the host machine and get the computer's id. You must also have [Toltec](https://github.com/toltec-dev/toltec) or [Entware](http://github.com/evidlo/remarkable_entware) installed on the reMarkable.
1. Install syncthing on the reMarkable and start up the configuration GUI.
``` bash
opkg install syncthing
syncthing -gui-address "http://0.0.0.0:8888" -no-restart```
2. Browse to the reMarkable Syncthing interface at `http://10.11.99.1:8888`
3. Add folders to sync. I chose `/home/root/books` for syncing documents to [Plato](http://github.com/darvin/plato). `/usr/share/remarkable/` and `/home/root/.local/share/remarkable/xochitl/` may also be of interest.
4. Add a remote device (your computer). Syncthing may automatically detect your computer's id. Under the `Sharing` tab, enable `Auto Accept` and check the folder you previously created.
5. Browse to `http://localhost:8080` and wait for a prompt to connect to the reMarkable and accept. This took about 30s to appear.
6. Wait for another prompt to receive the shared folder and accept. Verify that folder syncing works.
7. Copy `syncthing.service` to `/etc/systemd/system/` then start and enable the service
``` bash
wget https://raw.githubusercontent.com/Evidlo/remarkable_syncthing/master/syncthing.service -O /etc/systemd/system/syncthing.service
systemctl daemon-reload
systemctl start syncthing
systemctl enable syncthing
```
## Caveats- At least one of the devices must be publically accessible on TCP 22000. Alternatively, if at least one of the devices can access the other on local intranet, you can add another discovery method via `[Remote Device] > Edit > Advanced > Addresses`.. eg: `tcp://192.168.1.123:22000`
- WiFi needs to be on an connected for this to work, so xochitl should be running.