redroid-doc
redroid-doc copied to clipboard
accessing rclone mount from android
Not sure if it just really more complicated than it seems or I'm missing smth obvious. I want to mount my rclone remote so i can access it from the android.
rclone command:
sudo rclone mount remote: /home/user/rclone-mount --allow-other
docker run -d --rm \
--privileged \
-v ~/redroid-data:/data \
-v ~/rclone-mount:/data/media/0/Download/test \
-p 5555:5555 \
--name redroid \
redroid/redroid:11.0.0_gapps
if I exec into container, and run ls /data/media/0/Download/test, I see the files, but not in any file manager in the android
WSL, Ubuntu 22.04
This storage is emulated; check /storage/emulated/0/Download/test, your mount should be empty.
@zhouziyang Sorry, can you elaborate a bit? I'm still not sure how to proceed.