Gdrive mounted in network mode but also tried folder mode, copying to the desktop or moving files to organise within the cloud mount is extremely slow.
Run the command 'rclone version' and share the full output of the command.
1.59.00 as reported from the exe file details, downloaded from the website and installed yesterday
Which cloud storage system are you using? (eg Google Drive)
Google Drive
The command you were trying to run (eg rclone copy /tmp remote:tmp)
rclone mount --config=rclone.conf --log-level=INFO --log-file=rclone-mount.log --attr-timeout 1m --dir-cache-time 1m --vfs-cache-mode full --vfs-cache-max-size 10G --user-agent ****** gdrive-crypt: X: --network-mode
Those items basically making any polling remote insanely slow as there's no directory cache time as you've reduced it to a minute so every time after 1 minute, it has to get a directory listing back instead of being in cache.
at the moment my use case for this mount is a cloud storage drive mounted in windows, i am setting up a retro gaming system where i will store all my roms on gdrive, i may need to script a download tied to the game launcher as ive seen done elsewhere but im on gigabit so most games will download instantly. i have it all on a proxmox host vms, lxc containers etc i have plex setup on an lxc container with rclone mounted to the debian host working great, this is within a windows vm.
i've removed the lines you mentioned, directory traversal is faster but the downloads are the same slow speed i did wonder if it was because its thousands of small files so i downloaded a movie and i get intermittent bursts of full bandwidth then crawling down to low 100kbs
Google somewhat stinks for uploading small files as you can only do 2-3 per second.
I'm not sure if you are using Windows Explorer but that's painful. I'm not a Windows guy but I gather most Windows folks don't use that and use Rclone Browser or something.
The remote control is enabled on the mount by adding a few lines. My server is mine alone and not accessible to anyone else so I leave no auth and it's only visible on the server.
# This sets up the remote control daemon so you can issue rc commands locally
--rc \
# This is the default port it runs on
--rc-addr 127.0.0.1:5575 \
# no-auth is used as no one else uses my server and it is not a shared seedbox
--rc-no-auth \