Viperkc

Members
  • Posts

    52
  • Joined

  • Last visited

Everything posted by Viperkc

  1. I added to the rclone mount: rclone mount --allow-other --dir-cache-time 720h --log-level INFO --poll-interval 15s --cache-dir=/mnt/ssd/RcloneCache/Tdrive_Media --vfs-cache-mode full --vfs-cache-max-size 500G --vfs-cache-max-age 336h --uid 99 --gid 99 tdrive1_archive_crypt: /mnt/user/mount_rclone/Tdrive_Media & Working perfectly by just adding those two things. Hope that helps you also.
  2. this was the fix for me, now I am on RC6 and no issues at all.
  3. I wanted to say thank you for this, I have had the same issue from 6.10 RC1 to any of the higher RC builds, I added those lines to my mount script and it works great now. I am on RC6 atm. Thanks again!
  4. Hello All, I have been running RC1 for sometime now and versions prior to it. Having an issue when upgrading to any RC higher than RC1 including RC5. I have Sonarr and Radarr dockers and do use Rclone/MergerFS to store files on GDrive. Everything has worked perfectly for 2+ years. But when I try to upgrade to anything above RC1 Sonarr and Radarr get permission denied errors when moving the files to the proper place. I have checked permissions and played with settings inside the dockers to no avail. If manually create the folders the ARRs will move the files perfectly. As I have upgrade to each RC release after 1 and up to 5 I see this issue. When I downgrade back to RC1 then all is working perfectly. So I guess my questions is, did something change regarding permissions from RC1 to RC2-5? If logs are needed I can upgrade to RC5 and get logs for a deeper dive. Any advise would be appreciated. Thanks
  5. all good here thanks for the quick fix
  6. same here plugin: bad file MD5: /boot/config/plugins/community.applications/community.applications-2020.02.06-x86_64-1.txz
  7. Everything seems to work fine for me ATM, but i am having the same issue as Kaizac. When Sonarr grabs an upgraded show if a previous version exists (which it does since its an upgrade) Sonarr wont move it, i get failed to import episode. If i manually delete the file from gdrive then Sonarr will process it fine.
  8. sounds like a win win! thanks for all your work on this project
  9. Hardlink support: Unionfs didn't support hardlinks so any torrents had to be copied to rclone_upload and then uploaded. Mergerfs supports hardlinks so no wasted transfer. I've added an upload exclusion to /mnt/user/local/downloads so that download files (intermediate, pending sonarr/raddarr import, or seeds) are not uploaded. For hardlinks to work, transmission/torrent clients HAVE to be mapped to the same disk 'storage' so files need to be in /mnt/user/mount_unionfs or for newer users /mnt/user/mount_mergerfs...hope this makes sense = MUCH BETTER FILE HANDLING AND LESS TRANSFER AND FILES NOT STORED TWICE Thanks for this update, i plan to change very soon. Regarding your above instructions, i am still unclear how torrents will work the new way. Will they still get uploaded to tdrive? Is it automated? Do they get seeded from tdrive? Or do they stay local until ratio is met? Can you please elaborate on how this part will work now? Thanks
  10. The one provided in the UI. But mine is still doing the initial scan so maybe need to let it finish before adding to Radarr?
  11. I cannot seem to get the RSS to work in Radarr. I get this message: Unable to connect to indexer. Indexer responded with html content. Site is likely blocked or unavailable.
  12. are you putting in your plex token?
  13. Anyone else getting this via the plugin when checking for new builds? Warning: file_get_contents(https://lsio.ams3.digitaloceanspaces.com/?prefix=unraid-nvidia/): failed to open stream: HTTP request failed! HTTP/1.1 503 Service Unavailable in /usr/local/emhttp/plugins/Unraid-Nvidia/include/exec.php on line 45 Warning: Invalid argument supplied for foreach() in /usr/local/emhttp/plugins/Unraid-Nvidia/include/exec.php on line 47 Warning: array_keys() expects parameter 1 to be array, null given in /usr/local/emhttp/plugins/Unraid-Nvidia/include/exec.php on line 51 Warning: Invalid argument supplied for foreach() in /usr/local/emhttp/plugins/Unraid-Nvidia/include/exec.php on line 51 Warning: Invalid argument supplied for foreach() in /usr/local/emhttp/plugins/Unraid-Nvidia/include/exec.php on line 70 Warning: array_multisort(): Argument #3 is expected to be an array or a sort flag in /usr/local/emhttp/plugins/Unraid-Nvidia/include/exec.php on line 73 Warning: Invalid argument supplied for foreach() in /usr/local/emhttp/plugins/Unraid-Nvidia/include/exec.php on line 91 Warning: Invalid argument supplied for foreach() in /usr/local/emhttp/plugins/Unraid-Nvidia/include/exec.php on line 103
  14. yes confirmed working. I did have question though. For the past month or so my Radarr and Sonarr have been really slow to do the daily refresh. At times the dockers will actually lockup and only a reboot will fix. Anyone else had this issue? I had read elsewhere of it happening because of something google is doing to throttle scans. Thanks
  15. Thanks! I will try this shortly. I hope it works i am excited to test 6.8.
  16. I pulled it a couple of times actually. I think Fuse was left out which caused my rclone to stop working. I realize this is nothing to do with Nvidia plugin. Fusermount completely missing from /bin. Each time i reverted back to 6.7 all worked fine and it was there again. Thanks for your very fast release. Maybe i can help test it on the next release.
  17. ok went back to 6.8 and it seems fusermount is missing all together which: no fusermount in (.:/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin) That is for sure the problem. When i ran it in 6.7 i got this: /bin/fusermount How to fix this?
  18. I was just looking forward to the new IOWAIT fixes.
  19. i have mount script run at start of array and unmount run at stop. the only log that showed was on the startup one. sorry i set this up with the help of a friend and it has always worked. I am not a pro at how it all works TBH. I think its safe to assume it has something to do with a change in 6.8 as it works fine again after rollback
  20. i got it when i ran mount script. im sorry i did not run unmount as it never mounted. i can go back to 6.8 and try that if you like
  21. Changed Status to Closed
  22. here is my unmount script if it will help: #!/bin/bash # unmount to be safe fusermount -uz /mnt/user/mount_unionfs/Tdrive_Media fusermount -uz /mnt/user/mount_rclone/Tdrive_Media # Remove other dummy files if [[ -f "/mnt/user/appdata/other/rclone/rclone_upload" ]]; then echo "upload file present - removing dummy file" rm /mnt/user/appdata/other/rclone/rclone_upload else echo "rclone upload already exited properly" fi if [[ -f "/mnt/user/appdata/other/rclone/rclone_cleanup" ]]; then echo "cleanup file present - removing dummy file" rm /mnt/user/appdata/other/rclone/rclone_cleanup else echo "cleanup already exited properly" fi exit
  23. it shows up when mount script runs works great in 6.7 and has for a very long time
  24. rclone v1.49.5-205-g65a82fe7-beta #!/bin/bash ####### Start rclone gdrive mount ########## # check if gdrive mount already created if [[ -f "/mnt/user/mount_rclone/Tdrive_Media/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check rclone vfs already mounted." else echo "$(date "+%d.%m.%Y %T") INFO: mounting rclone vfs." # create directories for rclone mount and unionfs mount mkdir -p /mnt/user/appdata/other/rclone mkdir -p /mnt/user/mount_unionfs/Tdrive_Media mkdir -p /mnt/user/rclone_upload/Tdrive_Media rclone mount --allow-other --buffer-size 256M --dir-cache-time 72h --drive-chunk-size 512M --fast-list --log-level INFO --vfs-read-chunk-size 128M --vfs-read-chunk-size-limit off tdrive1_archive_crypt: /mnt/user/mount_rclone/Tdrive_Media & #sleep 30 # check if mount successful # slight pause to give mount time to finalise sleep 5 if [[ -f "/mnt/user/mount_rclone/Tdrive_Media/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check rclone gdrive vfs mount success." else echo "$(date "+%d.%m.%Y %T") CRITICAL: rclone gdrive vfs mount failed - please check for problems." rm /mnt/user/appdata/other/rclone/rclone_mount_running exit fi fi ####### End rclone gdrive mount ########## ####### Start unionfs mount ########## if [[ -f "/mnt/user/mount_unionfs/Tdrive_Media/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check successful, unionfs already mounted." else unionfs -o cow,allow_other,direct_io,auto_cache,sync_read /mnt/user/rclone_upload/Tdrive_Media=RW:/mnt/user/mount_rclone/Tdrive_Media=RO:/mnt/user/Media=RO /mnt/user/mount_unionfs/Tdrive_Media if [[ -f "/mnt/user/mount_unionfs/Tdrive_Media/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check successful, unionfs mounted." else echo "$(date "+%d.%m.%Y %T") CRITICAL: unionfs Remount failed." rm /mnt/user/appdata/other/rclone/rclone_mount_running exit fi fi ####### End Mount unionfs ########## exit
  25. i did try to uninstall and reinstall plugin. Just rolled back to 6.7 and all working fine again. I see 6.8 has fuse 3.0 could that be the issue?