Kaizac

Members
  • Posts

    470
  • Joined

  • Days Won

    2

Everything posted by Kaizac

  1. Why are you on torrents? Move to usenet and get rid of that seeding bullshit. Also you can just direct play 4k from your gdrive. I do with up to 80 Gb files and it's fine. You might consider a seed box though. You can use torrents and move with gigabit speed to gdrive.
  2. 2 PSA's: 1. If you want to use more local folders in your union/merge folder which are RO, you can use the following merge command and Sonarr will work. No access denied errors anymore. Use either mount_unionfs or mount_mergerfs depending on what you use. mergerfs /mnt/disks/local/Tdrive=RW:/mnt/user/LocalMedia/Tdrive=NC:/mnt/user/mount_rclone/Tdrive=NC /mnt/user/mount_unionfs/Tdrive -o rw,async_read=false,use_ino,allow_other,func.getattr=newest,category.action=all,category.create=ff,cache.files=partial,dropcacheonclose=true 2. If you have issues with the mount script not working at start of array because docker daemon is starting. Then just put your mount script on custom settings and run it every minute (* * * * *). It will then run after array start and will work. @nuhll both these fixes should be interesting for you.
  3. Asking it again cause I'm very curious. Can you share your merger command?
  4. You download to the merge folder but it will write to your ssd. Rclone uploads the files from your sad.
  5. You mount your dockers to /mnt/user/mount_mergerfs/google_vfs and then the proper subfolder (tv/movies/downloads/etc.). If you just put it on your cache it will only see the local stored files.
  6. With unionfs or mergerfs? If mergerfs would you mind sharing your merger command?
  7. Yep I removed one of my local folders which was in my mergerfs and now Sonarr works. Too bad that doesn't work.
  8. I keep getting this error both with automatic import als manual import. But it only happens with upgrades to files: Sab and Sonarr are pointing to the same directory and new series work fine, it's only when an existing file needs to be upgraded. Below the docker runs of sab and sonarr. Hopefully someone has an idea? root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='sonarr' --net='br0.90' --log-opt max-size='10m' --log-opt max-file='1' -e TZ="Europe/Berlin" -e HOST_OS="Unraid" -e 'TCP_PORT_8989'='8989' -e 'PUID'='99' -e 'PGID'='100' -v '/dev/rtc':'/dev/rtc':'ro' -v '/mnt/user/mount_unionfs/Tdrive/Series/':'/tv':'rw' -v '/mnt/user/mount_unionfs/Tdrive/Downloads/':'/downloads':'rw' -v '/mnt/user/mount_unionfs/':'/unionfs':'rw,slave' -v '/mnt/cache/appdata/sonarr':'/config':'rw' 'linuxserver/sonarr:preview' root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='sabnzbd' --net='br0.90' --ip='192.168.90.10' --log-opt max-size='10m' --log-opt max-file='1' -e TZ="Europe/Berlin" -e HOST_OS="Unraid" -e 'TCP_PORT_8080'='8080' -e 'TCP_PORT_9090'='9090' -e 'PUID'='99' -e 'PGID'='100' -v '/mnt/user/mount_unionfs/Tdrive/Downloads/':'/downloads':'rw' -v '/mnt/user/mount_unionfs/Tdrive/Downloads/Incompleet/':'/incomplete-downloads':'rw' -v '/mnt/user/mount_unionfs/':'/unionfs':'rw,slave' -v '/mnt/cache/appdata/sabnzbd':'/config':'rw' 'linuxserver/sabnzbd'
  9. I'm not using the recycling bin, but I thought you might be doing that. I just don't get why Sonarr can't upgrade files and gets an access denied, when Radarr is working fine with the same settings. For downloads I like to unionfs/Tdrive/Downloads and for series I point to unionfs/Tdrive/Series. Both on r/w and mount_unionfs on rw-slave. I'm doubting I need remote mapping because sonarr and sab are on different IP's. But that isn't needed for Radarr either.
  10. I'm trying to run a ssh command through User Scripts. So I expect creating a .sh file is the right way to do that. But then how do I trigger it from User Scripts? And if I want to make it more complex by giving it this command when running: PYTHONIOENCODING=utf8 * * * * * /path/to/script.sh How would I go about that? And what exactly should be the path if I for example put the .sh file in the User Scripts/scripts folder?
  11. @DZMM did you configure recycling bin in your Sonarr instance? If not would you mind sharing your docker settings, which folders you put on r/w slave and which on normaly r/w. I'm still having import issues, but only when upgrading files. Getting an access denied error.
  12. @DZMM Do you never have the problem of the daemon docker not running when you run the mount script at startup? Nuhll has the same problem as me. I've put in a sleep of 30 but that's not enough. Will be increasing it more to try to get it fixed. But I find it strange that you don't have the same issue. @nuhll unfortunately I have the permission denied error again. Did it come back for you?
  13. Try fixing your share settings through safe permissions under tools
  14. Check your r/w settings for your mappings in your docker settings. Rw slave for mount unionfs and rw for the rest
  15. Radarr has some issues lately. Had the same issues last couple of days, but now seem to have fixed it. Change your appdata link from /user/ to /cache/.
  16. @DZMM sorry but in your first post you wrote this: I've tried to understand what you're saying here, but I really can't. What exactly is the difference in user/rclone_upload with user/local? They are both local shares which you include in your union/merge. Maybe I'm missing something in your changes, since my configuration was a bit different because of more local folders.
  17. You have a double --fast-list in your upload code. Probably not an issue, but might want to remove it. So far I've just migrated everything over and it seems to be working fine! Don't understand the hardlinking much yet, because I don't use torrents much so don't have the seeding issue. Will have to change parts of my folder structure though to get in line with the new standard.
  18. Ok understood. In your mount command you have --dir-cache-time 720h. This used to be 72h. Why the change? And you also started using --fast-list in the mount command. I thought this didn't work in the mount command only when doing transfers for example. Has that changed?
  19. Do we need to install something from apps to do that? Or you just use the direct repo link? So in the future it could be that the repo gets moved/deleted and it won't work?
  20. @DZMMcurrently reading into your scripts. What I don't understand is why you have to create a docker for mergerfs. Is this the way it's implemented in rclone?