First boot
Avoid being forced to connect your e-reader to the internet and to create a Kobo account
When you start a Kobo e-reader for the first time, it blocks any interaction until you run the setup software (Win/Mac only) or connect the device to a WiFi point. This initial setup will do two things: it will force you to create a kobobooks.com account, and it will update your device's firmware.
Some users would rather not connect their devices to the internet or create online accounts because of privacy concerns, while others may not be interested in buying e-books on Kobo's online marketplace. Furthermore, there's no setup software for other OSes like Linux-based ones, so you're left alone with the WiFi option.
Skip device registration
There is a simple way to by-pass the above mentioned restriction. The Kobo reader will skip it whenever a user is detected by its firmware. We could achieve this by editing the internal device database. There are two ways to do it: one for average users, and other for tech savvy ones.
Easier option for average users
- Install DB Browser for SQLite and open the
KoboReader.sqlitefile that you will find in the.kobo/directory. - Click on the
Browse Data
tab and select theusertable in the dropdown menu. - Click on the
New Record
button to register a new user. A new row will be added. Then you can edit each cell value by double-clicking on them. - Enter a random name (e.g.
Foo
) in theUserDisplayNamecell. - Enter a random e-mail address (e.g.
bar@baz.qux
) in theUserEmailcell. It doesn't need to match the standard e-mail address format. - Save the changes by clicking
File
→Save changes
.
Straightforward option for tech-savvy users
Assuming you already have a command-line shell for SQLite 3…
- Open the database by running
$ sqlite3 ./.kobo/KoboReader.sqlitein a terminal (Linux, Mac) or command prompt (Windows). - Add a new record to the
usertable by running the following query:
You can change those values.INSERT INTO 'user' (UserID, UserKey, UserDisplayName, UserEmail)
VALUES (3, '', 'Foo', 'bar@baz.qux');UserIDis aNOT NULLPRIMARY KEY.UserEmaildoesn't need to match a well-formed e-mail account. - Exit by running
.exit.
Update e-reader firmware
Get the latest official firmware right from Kobo
How to install offline firmware updates
Download the appropriate ZIP file for your device from the list below. Then connect your Kobo e-reader to your computer using a USB cable. Extract the ZIP file contents into the .kobo folder of your Kobo e-reader. Finally, remove your Kobo e-reader with security and your e-reader will refresh itself and start the updating procedure automatically.
Firmware downloads
(List was last updated on: )
Adding dictionaries
Get official dictionaries right from Kobo
How to install dictionaries
- Download the appropriate ZIP files from the list below.
- Connect the Kobo e-reader to your PC with an USB cable.
- Copy the
dicthtml.zipfiles to the.kobo/dict/folder on the device. Do not extract the ZIP files content. - Safely disconnect the e-reader from your computer.
- In the e-reader, tap the
≡
menu icon at the top left corner, and navigate toSettings
→Language and dictionaries
. - There you can read:
X dictionaries installed
. Tap theEdit
button at the right. - Enable each dictionary you have downloaded by clicking on the
+
button at their side.
Dictionary downloads
| Language | Code | Links |
|---|---|---|
| Catalan | ca | Download |
| English | en | Download |
| English‑German | ende | Download |
| English‑Spanish | enes | Download |
| English‑French | enfr | Download |
| English‑Italian | enit | Download |
| English‑Japanese | enja | Download |
| English‑Dutch | ennl | Download |
| English‑Portuguese | enpt | Download |
| English‑Turkish | entr | Download |
| English‑Chinese | enzh-CN | Download |
| English‑Taiwanese | enzh-TW | Download |
| German | de | Download |
| German‑English | deen | Download |
| Spanish | es | Download |
| Spanish‑English | esen | Download |
| French | fr | Download |
| French‑English | fren | Download |
| French‑Dutch | frnl | Download |
| Italian | it | Download |
| Italian‑English | iten | Download |
| Japanese | ja | Download |
| Dutch | nl | Download |
| Dutch‑English | nlen | Download |
| Dutch‑French | nlfr | Download |
| Portuguese | pt | Download |
| Portuguese‑English | pten | Download |
| Swedish | sv | Download |