Userspace filesystem for remarkable update files
Project description
reMarkable Update FUSE
Mount remarkable update files using FUSE
Usage
pip install remarkable_update_fuse
mkdir /mnt/signed /mnt/image
rmufuse path/to/update_file.signed /mnt/signed
Known Issues
- Will report checksum errors for Directory inode, even though they are fine
- Will report checksum errors for extent headers, even though they are fine
Programatic Usage
from ext4 import Volume
from remarkable_update_fuse import UpdateImage
image = UpdateImage("path/to/update/file.signed")
# Extract raw ext4 image
with open("image.ext4", "wb") as f:
f.write(image.read())
# Extract specific file
volume = Volume(image)
inode = volume.inode_at("/etc/version")
with open("version", "wb") as f:
f.write(inode.open().read())
Building
Dependencies:
- curl
- protoc
- python
- python-build
- python-pip
- python-pipx
- python-venv
- python-wheel
make # Build wheel and sdist packages in dist/
make wheel # Build wheel package in dist/
make sdist # Build sdist package in dist/
make dev # Test mounting 2.15.1.1189 to .venv/mnt
make install # Build wheel and install it with pipx or pip install --user
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file remarkable_update_fuse-1.0.8.tar.gz
.
File metadata
- Download URL: remarkable_update_fuse-1.0.8.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef593e77a5e3a6b630f4ce3bf0ebc128807bdb30d66b1f12bee2b8bbf2ad8b24 |
|
MD5 | 1ebf902514332a88e16f47fb16bebed7 |
|
BLAKE2b-256 | ff28eae1000d409fa3c174e9c38558922d13e14757d674367ffc4daf4bff80ab |