aboutsummaryrefslogtreecommitdiff
path: root/research/readers.md
blob: 15375a26f701474593695451e09dc8307e001416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[[!meta title="Leitores - eReaders"]]
[[!tag leitura hardware pesquisa gadget]]

Candidato: Kobo.

* [fread is coming](https://fread.ink/).
* [MobileRead Wiki - Debian Linux on a Kobo](https://wiki.mobileread.com/wiki/Debian_Linux_on_a_Kobo).
* [Ask HN: Cheap, hackable e-reader? | Hacker News](https://news.ycombinator.com/item?id=13863046).

Kobo
----

* [Kobo Brasil - Google+](https://plus.google.com/communities/112084021543948580071).
* [Graham King » Kobo eReader Touch on Ubuntu Linux](https://www.darkcoding.net/misc/kobo-ereader-touch-on-ubuntu-linux/).
* [Kobo Aura H2O - Rakuten Kobo eReader Store](https://gl.kobobooks.com/products/kobo-aura-h2o).
* [Kobo e-reader](https://en.wikipedia.org/wiki/Kobo_eReader).
* [Code](https://github.com/kobolabs/Kobo-Reader).

## Customizing

* [KOReader Community · GitHub](https://github.com/koreader): [Installation on Kobo devices · koreader/koreader Wiki · GitHub](https://github.com/koreader/koreader/wiki/Installation-on-Kobo-devices).

### Hacking

* [Kobo Start Menu 08 - MobileRead Forums](https://www.mobileread.com/forums/showthread.php?t=266821).
* [Hacking the fnacbook (aka. Kobo by Fnac) - a3nm's blog](https://a3nm.net/blog/fnacbook_kobo_hacking.html).
* [Even more Kobo hacking - a3nm's blog](https://a3nm.net/blog/kobo_glo_hacking.html).
* [MobileRead Wiki - Kobo Touch Hacking](https://wiki.mobileread.com/wiki/Kobo_Touch_Hacking).
* [Hacking / Customizing a Kobo Touch ebook reader: Part I, sqlite (Shallow Thoughts)](http://shallowsky.com/blog/tech/kobo-hacking.html).
* [Offline Wikipedia on Kobo (Guide) - MobileRead Forums](https://www.mobileread.com/forums/showthread.php?t=276219).
* [KoboStuff](https://geek1011.github.io/KoboStuff/).

### Sincronização

A partir de uma cópia completa do acervo:

    storage="/path/to/complete/doc/repos"
    sudo rsync --size-only -avL --no-p --no-g --no-owner --delete-after --ignore-errors             \
               --include='*/' --include='*.pdf' --include='*.epub' --include='*.mobi' --exclude='*' \
               $storage/books/ /media/tablet/books/

Notar que usamos:

* `--size-only` para fazer uma comparação simples de tamanho dos arquivos (é seguro porque assumimos que são obras autoradas/fechadas) e copiar mais rápido, além de evitar a cópia completa por conta de `-L`.
* `--ignore-errors` por conta de possíveis ligações simbólicas mortas de arquivos do git-annex que não estejam na cópia de trabalho.