Skip to content
Nicolas Bruot edited this page Apr 29, 2019 · 10 revisions

pyrmexplorer: GUI explorer for Remarkable tablets

Remarkable tablet

rMExplorer offers an intuitive interface to browse files and folders on your Remarkable tablet and to download contents. It communicates mainly with the tablet's web server that is available when connecting the tablet to your computer with a USB cable. The SSH backup feature, however, relies on a Wifi connection.

rMExplorer main window

At the moment, the following features are available (with the connection type they need indicated in brackets):

  • [USB] Browsing through the folders structure on the tablet.
  • [USB] Downloading single files, folders and all the contents as PDF files (generated by the tablet itself) or stacks of PNG images.
  • [Wifi] Making a backup of the documents source files.

rMExplorer downloading

Installation

Prerequisites

pyrmexplorer should run on many systems although it has only be tested on Windows 10 and Debian 9 (Stretch).

pyrmexplorer is written in Python 3. Therefore, make sure you have a working Python 3 environment. You can for example use Anaconda.

The program depends on the following Python packages:

  • PyQt5
  • pycryptodomex
  • paramiko
  • password_strength
  • Wand

If they are not installed already, you can install them for example with pip, by executing:

pip install pyqt5 pycryptodomex paramiko password_strength wand

Wand also requires Ghostscript (32-bit version) and ImageMagick to be installed and to be in your PATH variable.

Download and install Ghostscript from here. Then run the Windows PowerShell from the start menu and execute

[Environment]::SetEnvironmentVariable("Path", $env:Path + ";C:\Program Files (x86)\gs\gs9.26\bin\", [EnvironmentVariableTarget]::User)

(replacing "9.26" by the version you just installed).

Then, download and install ImageMagick following these instructions. During the installation process, keep all the proposed options to their default values.

Installation

Just download and extract the latest release on the releases page.

Using rMExplorer

Before starting rMExplorer for the first time, connect your tablet via USB and check that you can access its web interface by accessing the following page:

http://10.11.99.1/

This should display the contents of the tablet in a browser. If not, check the following points:

  • Check that the tablet is started and not locked.
  • Check that the USB interface is enabled. On the tablet, go to rM\Storage and check that "Enable USB web interface (Beta)" is activated.
  • Check the IP address at which the tablet can be accessed. On the tablet, go to rM\About. In the column on the right that starts with "Copyright notices", scroll down to the bottom and check the IP address displayed. If it is not 10.11.99.1, try to access the address you obtained. If this works, you can launch rMExplorer and change the address in Devices\Settings.
  • On Unix systems, you may need to set up your computer IP address on the network interface created by plugging in the tablet. Type ip link show. This lists the available network interfaces. Among interfaces named as lo, eth0..., you should find one with a long name such as enp0s20u9u1. To activate the interface you found above, type ip link set dev enp0s20u9u1 up. Finally, set the computer's IP on this interface with ip addr add 10.11.99.3/24 dev enp0s20u9u1.

Once you can access your tablet in a web browser, you can start rMExplorer by launching it by typing in a command prompt (in the pyrmexplorer folder), python rmexplorer.

Common issues

wand.exceptions.DelegateError: FailedToExecuteCommand `"gswin32c.exe"

If you get an error containing the text above (or similar) when exporting as PNG, it means that Wand cannot find your Ghostscript executable. Check out the install notes for how to install it.

Timeout when launching rMExplorer

Issue: When starting rMExplorer, the main window takes time to appear, and signals a timeout error, while not displaying the tablet contents.

Solution: Go through all the steps of the "Using rMExplorer" section.

Downloading big files on the tablet leads to timeout errors

Generating PDFs from files with a lot of text takes a while and is done by the tablet. When requesting such files, the tablet may not respond for a long time. In that case, increase the rMExplorer's timeout setting in Device\Settings.

Clone this wiki locally