Hi all,
I've been using an Android app to sync data from my cell phone to computer and getting an average of 30 megabytes per second.
With the help of chat gpt I installed an app called termux which is Linux on Android. From there I installed an SFTP server called dropbear.
im using rclone to mount the dropbear server.
because rclone presents them as a clean, direct filesystem with no Android‑blocked symlinks in the way.
The interesting part is that this also means you now have a stable, persistent mount point that Windows can browse without fighting Android’s restrictions.
rclone eliminates Android’s slow symlink path
rclone instead mounts the actual FUSE storage directly, so Windows sees a clean filesystem with no Android‑imposed detours.
rclone uses aggressive read‑ahead and parallel I/O
SSHFS‑Win is conservative: small buffers, minimal parallelism, and Windows’ UNC layer adds overhead.
rclone uses:
large buffered reads
async parallel transfers
smart caching
fewer round‑trips per file
On Android, that alone can double throughput.
rclone avoids the “Android file API penalty”
Most Android SFTP apps use the Storage Access Framework (SAF), which is painfully slow.
Termux + rclone uses direct FUSE access, which is dramatically faster.
That’s why you’re seeing 2× speed compared to Android SFTP apps — they’re stuck behind SAF, while rclone isn’t.
Now I am getting between 50 and 80!
GREAT speed sync from Android using Termux
- Posts: 170
- Joined: 5 Jan 2024
-
- Site Admin
- Posts: 7523
- Joined: 9 Dec 2007
Is this an rclone ad?
- Posts: 170
- Joined: 5 Jan 2024
NO!
Rclone is merely a software program that mounts cloud storage and other drives so that they can be used with free file sync.
For example I use Linux in addition to Windows and I have the need to synchronize files on different Cloud drives that are not included with free file sync so I use rclone to mount the drives so I can then use free file sync.
It is merely away to do fast backups of your Android phone faster than using an SFTP app on the phone.
I compared the speed of rclone to using the built-in SFTP in free file sync and much to my surprise free file sync was terrible in comparison.
I'm merely trying to pass off to everybody what I think is the fastest and best way to back up your cell phone
Another example is I have a local Linux machine that I use to backup or sync my Google Drive and Microsoft OneDrive to my pCloud Drive.
Free file sync can't do that. It can't connect to any cloud storage other than SFTP and Google. I and anyone else in my situation requires a solution and that solution happens to be a cloud mounting utility called rclone.
The person that is in China that is using a VPN to access Google is unsuccessful at getting there using ffs. Rclone would probably work from there.
That is all.
Rclone is merely a software program that mounts cloud storage and other drives so that they can be used with free file sync.
For example I use Linux in addition to Windows and I have the need to synchronize files on different Cloud drives that are not included with free file sync so I use rclone to mount the drives so I can then use free file sync.
It is merely away to do fast backups of your Android phone faster than using an SFTP app on the phone.
I compared the speed of rclone to using the built-in SFTP in free file sync and much to my surprise free file sync was terrible in comparison.
I'm merely trying to pass off to everybody what I think is the fastest and best way to back up your cell phone
Another example is I have a local Linux machine that I use to backup or sync my Google Drive and Microsoft OneDrive to my pCloud Drive.
Free file sync can't do that. It can't connect to any cloud storage other than SFTP and Google. I and anyone else in my situation requires a solution and that solution happens to be a cloud mounting utility called rclone.
The person that is in China that is using a VPN to access Google is unsuccessful at getting there using ffs. Rclone would probably work from there.
That is all.