Allfather

Members
  • Posts

    7
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Allfather's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Hey all. I am currently using the following build for RClone/MergerFS/Sonarr/Radarr/Overseerr/Plex and Direct Plays / Direct Streams everything locally to two nVidia Shields in my house. Motherboard: ASRockRack E3C236D2I CPU: 1x Intel® Xeon® CPU E3-1240 v5 @ 3.50GHz RAM: 1x 16GiB DDR4 Sinble-bit ECC Cache: 1x 400GB Intel® NVME SSD 750 Series (For download, repair, unpack) - utilizing the only PCIe slot available Cache: 2x 240GB Intel® SSD DC S4600 (system- and appdata set to this cache with cache-flag to only) Array: 2x 4TB WD Red (Data/Parity) However, more and more of my closest friends are starting to ask for access to my Plex and I plan to invite my family as well. This will most likely murder my poor Xeon (as it is occasionally busy with metadata processing, repairing and unpacking) and I will finally go down the rabbit hole known as Hardware Transcoding. I have decided to go down the Intel QSV lane using either the 730 or 750 (I5-11400 or I5-11600) iGPU together with 2x16GB DDR4 3200MHz on the ASUS ROG Strix B560-I mITX board. Will the 750 provide any benefits over 730 or even 630? I read somwehere that the 730 should be able to to HDR Tonemaping in hardware when, and if, Plex will support it While upgrading the processing power I am also considering getting rid of all current storage in favor for the two avaible M.2-slots on the aforementioned motherboard. I know that TRIM is only supported on cache devices and therefore I need to trick UNRAID with a USB- or Flash device and simply pin everytning to the cache device - is this an viable option or have I misunderstood the trick?
  2. The folder is still being created despite no dockers being started, either by the script or by the service. No docker (autostart or manual) has a reference to the root folder (they all mount to the /media folder except for one mounting to folders outside the gdrive_vfs)
  3. For the sake of troubleshooting I disabled autostart on all dockers as well as disabled the dockers to start within the script but I still get the folder created
  4. Thank you again for the reply. I've added that script at both Array Start and Array Stop but the folder is still being created and thus, by my conclusion, has to be created within the rclone-mount script https://github.com/BinsonBuzz/unraid_rclone_mount/blob/latest---mergerfs-support/rclone_mount As mentioned in my original post the only changes I've made is to move the rclone mount- and cache share to a SSD Mirror. (The 'inconvenient issue' is present even though running an unmodified script)
  5. Thank you for replying. AFAIK I have to remove it manually. I gave it atleast 4 hours today when I updated the mount-script to 0.96.9.3 (was on 0.96.9.2 until today) but nothing happened so I removed it manually and it did not affect any functionality what so ever. This unmout-script is running At Startup of Array #!/bin/bash ####################### ### Cleanup Script #### ####################### #### Version 0.9.2 #### ####################### echo "$(date "+%d.%m.%Y %T") INFO: *** Starting rclone_cleanup script ***" ####### Cleanup Tracking Files ####### echo "$(date "+%d.%m.%Y %T") INFO: *** Removing Tracking Files ***" find /mnt/user/appdata/other/rclone/remotes -name dockers_started* -delete find /mnt/user/appdata/other/rclone/remotes -name mount_running* -delete find /mnt/user/appdata/other/rclone/remotes -name upload_running* -delete echo "$(date "+%d.%m.%Y %T") INFO: ***Finished Cleanup! ***" exit
  6. Hi. I have been using these scripts for a decent amount of time now and every integration works (plex, sonarr, radarr) as intended, but for some reason, I tend to get an empty "gdrive_vfs" folder on my mount-mergerfs share after each run/reboot. Nothing major aside from the base script - just the location of the mount_rclone and mount_mergerfs shares (mirror is an ssd-mirror) # REQUIRED SETTINGS RcloneRemoteName="gdrive_vfs" # Name of rclone remote mount WITHOUT ':'. NOTE: Choose your encrypted remote for sensitive data RcloneMountShare="/mnt/mirror/mount_rclone" # where your rclone remote will be located without trailing slash e.g. /mnt/user/mount_rclone RcloneMountDirCacheTime="720h" # rclone dir cache time LocalFilesShare="/mnt/user/local" # location of the local files and MountFolders you want to upload without trailing slash to rclone e.g. /mnt/user/local. Enter 'ignore' to disable RcloneCacheShare="/mnt/mirror/mount_rclone" # location of rclone cache files without trailing slash e.g. /mnt/user0/mount_rclone RcloneCacheMaxSize="100G" # Maximum size of rclone cache - 400G Default RcloneCacheMaxAge="24h" # Maximum age of cache files - 336H Default MergerfsMountShare="/mnt/mirror/mount_mergerfs" # location without trailing slash e.g. /mnt/user/mount_mergerfs. Enter 'ignore' to disable #DockerStart="nzbget plex sonarr radarr ombi" # list of dockers, separated by space, to start once mergerfs mount verified. Remember to disable AUTOSTART for dockers added in docker settings page DockerStart="plex tautulli readarr sonarr radarr radarr-kids overseerr" # list of dockers, separated by space, to start once mergerfs mount verified. Remember to disable AUTOSTART for dockers added in docker settings page MountFolders=\{"media/audiobooks,media/movies,media/movies-kids,media/movies-music,media/tv,media/tv-kids,retro"\} # comma separated list of folders to create within the mount this would be the content of my mount-mergerfs folder root@unRAID:/mnt/mirror/mount_mergerfs# ls gdrive_vfs/ and the content of the top-level gdrive_vfs root@unRAID:/mnt/mirror/mount_mergerfs/gdrive_vfs# ls gdrive_vfs/ media/ mountcheck retro/ Any Thoughts?