hi, i am trying to use emby server on android and connect google team drive directly to it. I have seen several guides with the rooted phone but when I mount through the terminal the folder remains empty, could you help me even if I do not know the terminal world well? thank you
What is your rclone version (output from rclone version)
Which OS you are using and how many bits (eg Windows 7, 64 bit)
Which cloud storage system are you using? (eg Google Drive)
The command you were trying to run (eg rclone copy /tmp remote:tmp)
I followed various guides also on YouTube to mount google drive on android through rclone with the use of the terminal, I arrive at the cloud folder but my files do not appear, I also saw other guides on the site with my same problem but I could not understand how to fix it
@ncw
AFAIK the main differences between mount and fusermount are:
path to search for mount.FSname helpers (irrelevant for un-mount)
non-root mode is supported only by fusermount
only fusermount supports libfuse for mounting (also irrelevant)
some flag names, e.g. mount -u -l == fusermount -u -z (i.e. -l vs -z for "laze")
Rclone invokes fusermount only to un-mount. When run by root (uid 0) on a Linux/Android kernel, it's functionally equivalent to umount or mount -u. Internally it just makes the umount kernel call.
I think we could add the following fallback in the code: invoke mount -u or umount if the fusermount is absent or failed to run.
Thoughts?
In this particular case the user is probably missing a termux package with the above mentioned shared library, or their magisk plugin is missing a correct LD_LIBRARY_PATH, since mount comes from Android core while fusermount comes from termux or alike.
I'm rather thinking of a general case.