this post was submitted on 29 Nov 2023
2 points (100.0% liked)

Remarkable

56 readers
1 users here now

Useful Links

founded 11 months ago
MODERATORS
 

I have tried to find a way to just dump app of my remarkable folders and files - maybe 500-1000 files.

I have given up on the platform but want to keep the files, basic PDF is fine -but all I am finding is processed for 1 by 1 movement - nothing that lets me just look ay a folder and make a copy of all of the contents.

top 5 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 9 months ago (2 children)

You might consider using RCU, as it has some excellent command line features to do what you want, I believe. Here is a link: RCU Rocks :). Hope this helps.

[–] [email protected] 1 points 9 months ago

Wait… to move away from a platform that … ( expletive deleted )… I need to install and learn a platform that exists only because the platform (expletive deleted)….

Anyway … I do appreciate your guidance, but this is totally not what I am looking to do.

[–] [email protected] 1 points 9 months ago

Or just Ctrl+A > Export PDF, which will mass export everything and also keep the folder structure.

[–] [email protected] 1 points 9 months ago

Via usb interface maybe ?

[–] [email protected] 1 points 9 months ago

If you're just looking to make a backup of the entire tablet at once, and you don't need the backed-up files to be usable for anything on the computer (other than being able to restore them back to the tablet when/if needed) ...

  • You can use rsync or scp to just plain copy the files from the tablet. My rm2-backup script does this, using rsync, plus it stores the backed-up files in a way that files which didn't change from the previous backup are not copied again, they are "hard linked" to the same file in the previous backup - so if you've only edited one document, it might only download 15-20 files, but the directory it produces will still be a full backup of the entire tablet.

    The Filesystem page on the same site has more information about how the tablet stores documents, and why you can't "just download them" in a format that the software on your computer can deal with.

  • You can use RCU to back up individual documents to .rmn files, which can later be uploaded back to a reMarkable tablet.

    I've heard that RCU also has a command line interface to do this without having to use the GUI, but I haven't used it myself - mostly because it takes forever to start. Just running ./RCU --help takes 16 seconds on an M2 MacBook Air, which IMHO is "not great but not horrible" for a GUI program, but is a deal-killer for command line utilities which might be called from a script. (I understand why it takes so long, and I don't disagree with doing it that way, it's just ... as a user it's kind of irritating.)

  • I am working on a Perl script which can download the same .rmn files that RCU creates, and which has an option to download all documents at once. It isn't ready yet, mostly because I haven't had time to concentrate on it, but I have gotten as far as producing files that RCU is able to upload into a different tablet. (Plus it doesn't take 15+ seconds just to start up.)

    I want to finish it, then I want to re-write it in Golang so people don't have to deal with figuring out how to install Perl modules just to use it.

If you need the backed-up files to be usable (i.e. all files converted to PDF, with pen strokes "burned into" the PDFs and therefore not edit-able if the PDF files are uploaded back to a tablet), you can ...

  • use the built-in web interface to export them as PDF files.

  • use the reMarkable apps, if the tablet is connected to a cloud account. (I'm pretty sure they can export documents to PDF, but I've never used them so I can't say for sure from direct experience.)

  • use RCU to download them to PDF files.