remote-android / redroid-doc

redroid (Remote-Android) is a multi-arch, GPU enabled, Android in Cloud solution. Track issues / docs here
4.32k stars 311 forks source link

accessing rclone mount from android #698

Open xob0t opened 5 months ago

xob0t commented 5 months ago

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

zhouziyang commented 5 months ago

This storage is emulated; check /storage/emulated/0/Download/test, your mount should be empty.

xob0t commented 5 months ago

@zhouziyang Sorry, can you elaborate a bit? I'm still not sure how to proceed.