Everything posted by DZMM
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
If it doesn't work locally just on apple tv it's nothing to do with the script. To verify move the offending file to a non script folder and try and play.
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Post your mount settings from the script
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Thanks. I think your find means we can ditch mergerfs and use rclone union instead. I didn't use union before because it doesn't support hardlinks, but I think this workaround fixes that. I'll try and test this week.
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
This is very interesting, and I think you've unlocked a significant improvement. One question first. So, in your torrent client have you changed the download location from /cloud/downloads/torrents/sonarr to /cloud/local/downloads/torrents/sonarr? Or was it always /cloud/local/downloads/torrents/sonarr?
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Thanks for the beer - supping it now
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
I'm not sure - I'm tempted to turn the cache off completely as my hit rate must be virtually zero as files don't reside there long enough. Maybe it's Plex scanning a file that leads to rclone downloading the file for it to be analysed?
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
sometimes files end up in your mergerfs mount location PRIOR to mount. Go into each disk and manually move files from /mount_mergerfs --> /local then run the mount script again .i.e. /mnt/disk1/mount_mergerfs/.... ----> /mnt/disk1/local/ /mnt/disk2/mount_mergerfs/.... ----> /mnt/disk2/local/ etc etc until you've moved all troublesome files.
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Just spotted the beer via PayPal - cheers!
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Glad you got it all working.
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Linuxserver
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
depends how much you are uploading and at what speed!
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
post your upload settings but I think you've got a ":" in "gdrive_upload_vfs:" that you shouldn't have: RcloneRemoteName="tdrive_vfs" # Name of rclone remote mount WITHOUT ':'.
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
I have no idea why your first launch is so slow (the 2nd is fast cause it's coming from the local cache). I can see that you've copied my mount settings and my 1st launch (900/120 connection) is never greater than 3-5s. Does your rclone config look something like this: [tdrive] type = drive scope = drive service_account_file = /mnt/user/appdata/other/rclone/service_accounts/sa_tdrive.json team_drive = xxxxxxxxxxxxxxxx server_side_across_configs = true [tdrive_vfs] type = crypt remote = tdrive:crypt filename_encryption = standard directory_name_encryption = true password = xxxxxxxxxxxxxxxxxxxx password2 = xxxxxxxxxxxxxxxxxxxxxxxxx
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Hmm this is interesting (in a wrong way of course!) I have the same setup and the only thing I can think of is that maybe rclone upload doesn't like hardlinks i.e. after it's uploaded the file it's deleting the original file rather than respecting the hardlink? Mergerfs definitely supports hardlinks. This would explain why I haven't come across this as I seed for a max of 14 days, whereas because of my slow upload speed, rclone upload doesn't typically upload a file until 14 days+. I can't think of a solution, other than maybe ditching hardlinks and doing a copy to your media folder so that rclone can move the copy? Worth a test to see if this is the cause?
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
sounds like an Apple or Plex issue. Have you tried playing a local copy to see what happens?
-
POLL: How Big Is Your Plex Rclone Mount?
Not sure, bit Enterprise Standard comes with unlimited storage and costs $20/mth
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
I don't have this problem (used to, but somehow it went away) - there is a script somewhere in the thread that has helped a few users. I think it's a few pages back
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
My personal rclone mount script was a bit different to the one on github - this is what I have: # create rclone mount rclone mount \ $Command1 $Command2 $Command3 $Command4 $Command5 $Command6 $Command7 $Command8 \ --allow-other \ --umask 000 \ --dir-cache-time 5000h \ --attr-timeout 5000h \ --log-level INFO \ --poll-interval 10s \ --cache-dir=/mnt/user/mount_rclone/cache/$RcloneRemoteName \ --drive-pacer-min-sleep 10ms \ --drive-pacer-burst 1000 \ --vfs-cache-mode full \ --vfs-cache-max-size 100G \ --vfs-cache-max-age 96h \ --vfs-read-ahead 1G \ --bind=$RCloneMountIP \ $RcloneRemoteName: $RcloneMountLocation & I've updated the github version just now. I think you should see playback and scanning improvements.
-
6.9.2 - Slow Performance, particularly VMs, after unclean shutdown
I just did a full power cycle (modem, router, switch, server) and it seems ok now.
-
6.9.2 - Slow Performance, particularly VMs, after unclean shutdown
I had a power cut this morning that caused my server to reboot. The server started "ok" afterwards, but everything is slow, particularly my W10 VMs that take forever to start, but are unusable as everything is mega slow. Even trying to move the mouse around is impossible - it took over an hour just to boot to the desktop. The extended test for FCP is still running even though it's been running for a few hours. At first I thought it was a dodgy docker as my CPU usage was at 80% which is unusual, but even after turning docker off and only running the main VM (Buzz) that I need, the VMs are still running very slow, which means I can't do my job. I'm hoping that there's something in my diagnostics that explains why and that someone can help me please. highlander-diagnostics-20211130-1431.zip
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
looks fine as you're not using mergerfs and cloud files are being handled just by rclone, so things should be even simpler. Have you changed any of the mount entries further down the script - the section should look like this: # create rclone mount rclone mount \ $Command1 $Command2 $Command3 $Command4 $Command5 $Command6 $Command7 $Command8 \ --allow-other \ --dir-cache-time 5000h \ --attr-timeout 5000h \ --log-level INFO \ --poll-interval 10s \ --cache-dir=/mnt/user/mount_rclone/cache/$RcloneRemoteName \ --drive-pacer-min-sleep 10ms \ --drive-pacer-burst 1000 \ --vfs-cache-mode full \ --vfs-cache-max-size 100G \ --vfs-cache-max-age 96h \ --vfs-read-ahead 2G \ --bind=$RCloneMountIP \ $RcloneRemoteName: $RcloneMountLocation & Can you post your rclone config as well please to eliminate any problems there.
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
I don't think the cache works at all to be honest, as it keeps EVERY file that is accessed i.e. if Plex does a scan/analysis it stores those files. In my scenario, the cache would have to be very big to have a decent hit rate. I keep my cache fairly small so that it probably can cope with someone rewinding a show, but not much else.
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
logs as well would be useful......
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
If anyone finds a discount code please share!
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
You can definitely buy enterprise standard for one user - here's my page (email just arrived). $20/mth is still a good deal. I'm going to purchase the annual plan even though there's no discount, in case Google change their mind