Quote:
Originally Posted by eddierm
Thanks for answering... I know Evernote is almost dead in koreader (for not saying completely dead jajaja) but I would like to use Joplin for my highlights ... I am not savvy but not entirely a newbie ... it's just I don't understand the joplin's "help" section: I don't understand how to set it up on koreader, nor how to connect my kobo to a joplin's server...
That's what I am asking for: one easy guide to setup properly Joplin... can anybody help me?
|
You need to run an instance of Joplin on your computer (and eventually in other devices). The communication between your devices can be done with dropbox or any other cloud service that Joplin supports.
But, for transferring notes between KOReader and your main instance at your computer you'll need to set up a relay on your computer that listen in a specific port for incomming notes.
That's the technical part and what confuses most users. It is basically a single command (OS dependant). From the in-app instructions:
Code:
To export to Joplin, you must forward the IP and port used by this plugin to the localhost:port on which Joplin is listening. This can be done with socat or a similar program. For example:
For Windows: netsh interface portproxy add listeningaddress:0.0.0.0 listeningport:41185 connectaddress:localhost connectport:41184
For Linux: $socat tcp-listen:41185,reuseaddr,fork tcp:localhost:41184
The info there is a bit generic. But (always assuming Windows) , if you assign an static IP to your ereader you can use the command
Code:
netsh interface portproxy add listeningaddress:DEVICE_IP listeningport:41185 connectaddress:localhost connectport:41184
Or if you know the subnet of your home and only want to relay notes from your LAN:
Code:
netsh interface portproxy add listeningaddress:HOME_SUBNET listeningport:41185 connectaddress:localhost connectport:41184
And make sure there's no rules on your firewall blocking incomming connections. It shouldn't be an issue when using one of these commands, but aaanyway.
Frankly, these instructions are not ok for most users, so users that are not willing to run these commands should use another methods for syncing their notes, like KoHighlights or exporting them to JSON/text/html and importing them in their liked notes program.