Jump to content

slimshizn

Members
  • Posts

    253
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by slimshizn

  1. Let me know about the 32M I'll follow suit if that helps.
  2. 29GB file stutters almost right off the bat after about a 30 second wait to play, 25GB plays for about 5 minutes till it starts buffering and stuttering every 10-15 seconds. ( didn't change anything yet)
  3. I'm sitting at 64GB Ram atm so if that's the only issue I should be okay. Yeah stuttering at the start every 10 seconds or so with larger files with both direct play and transcoding, everything else is fine. I can try 2G for the chunk-size-limit and then if that doesn't help I can add the vfs-read-chunk-size 32M.
  4. I've noticed that media files over 30G tend to skip. Is there a way to edit the mount to have it play the file smoothly? Internet speed is sufficient enough to play. rclone mount --allow-other --dir-cache-time 24h --cache-dir=/tmp/rclone/vfs --vfs-read-chunk-size 64M --vfs-read-chunk-size-limit 1G --buffer-size 256M --log-level INFO --stats 1m
  5. Let me know if you get any errors with that setup, sometimes I have trouble doing a clean reboot and have to ssh in and use top and kill. Not sure if its a container or if it's unionfs.
  6. It's working fine for me but I'm mounting my unionfs mount differently than you, it's mounted under /mnt/user/Media/Cloud/Movies instead of your /mnt/disks/Movies ####### Mount unionfs ########## # check if mounted if [[ -f "/mnt/user/Media/Cloud/Series/mountcheck" ]] && [[ -f "/mnt/user/Media/Cloud/Movies/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check successful, unionfs Movies & Series mounted." rm /mnt/user/software/rclone_install_running exit else # Unmount before remounting fusermount -uz /mnt/user/Media/Cloud/Series fusermount -uz /mnt/user/Media/Cloud/Movies unionfs -o cow,allow_other,direct_io,auto_cache,sync_read /mnt/user/Media/Cloud/Seriestmp=RW:/mnt/disks/crypt/Series=RO /mnt/user/Media/Cloud/Series unionfs -o cow,allow_other,direct_io,auto_cache,sync_read /mnt/user/Media/Cloud/Moviestmp=RW:/mnt/disks/crypt/Movies=RO /mnt/user/Media/Cloud/Movies if [[ -f "/mnt/user/Media/Cloud/Series/mountcheck" ]] && [[ -f "/mnt/user/Media/Cloud/Movies/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check successful, unionfs Movies & Series mounted." else echo "$(date "+%d.%m.%Y %T") CRITICAL: unionfs Movies & Series Remount failed." fi fi
  7. I can't risk it knowing that Google could snap its fingers and force 5 users. Local and cloud stays lol
  8. Forgot to ask about adding that script location to the docker. Since it's going to there should it be RO/slave? Thanks
  9. I had PD working for about 5 minutes then it just wouldn't work for me. Now the launch is pretty quick, barely noticeable at all. If I have any issues I'll be sure to report them here, for now I'm going to let it run and go mow lol.
  10. Awesome, thank you for all the help. Working great so far.
  11. Fixed it, for some reason there was an extra space or something in between there. Edit: This portion right here I'm just making sure about. I have installed the plugin already so do I need to add the install and uninstall to these scripts to have it work right? plugin remove rclone.plg rm -rf /tmp/rclone if [[ -f "/mnt/user/software/rclone_install_running" ]]; then rm /mnt/user/software/rclone_install_running echo "install running - removing dummy file" else echo "Passed: install already exited properly" fi Also when you have a chance can you post about how you have Sonarr and Radarr run the union cleanup script? Thank you again.
  12. this is giving me Error: unknown flag: --vfs-read-chunk-size Although it lists it as a flag. touch: cannot touch '/mnt/user/software/rclone_install_running': No such file or directoryThe network is up - installing rcloneplugin: installing: https://raw.githubusercontent.com/Waseh/rclone-unraid/beta/plugin/rclone.plgplugin: downloading https://raw.githubusercontent.com/Waseh/rclone-unraid/beta/plugin/rclone.plgplugin: downloading: https://raw.githubusercontent.com/Waseh/rclone-unraid/beta/plugin/rclone.plg ... doneplugin: not reinstalling same versionError: unknown flag: --vfs-read-chunk-sizeUsage:rclone mount remote:path /path/to/mountpoint [flags]Flags:--allow-non-empty Allow mounting over a non-empty directory.--allow-other Allow access to other users.--allow-root Allow access to root user.--attr-timeout duration Time for which file/directory attributes are cached. (default 1s)--daemon Run mount as a daemon (background mode).--debug-fuse Debug the FUSE internals - needs -v.--default-permissions Makes kernel enforce access control based on the file mode.--dir-cache-time duration Time to cache directory entries for. (default 5m0s)--fuse-flag stringArray Flags or arguments to be passed direct to libfuse/WinFsp. Repeat if required.--gid uint32 Override the gid field set by the filesystem.-h, --help help for mount--max-read-ahead int The number of bytes that can be prefetched for sequential reads. (default 128k)--no-checksum Don't compare checksums on up/download.--no-modtime Don't read/write the modification time (can speed things up).--no-seek Don't allow seeking in files.-o, --option stringArray Option for libfuse/WinFsp. Repeat if required.--poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s)--read-only Mount read-only.--uid uint32 Override the uid field set by the filesystem.--umask int Override the permission bits set by the filesystem.--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)--vfs-cache-mode string Cache mode off|minimal|writes|full (default "off")--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)--vfs-read-chunk-size int Read the source objects in chunks.--vfs-read-chunk-size-limit int If greater than --vfs-read-chunk-size, double the chunk size after each chunk read, until the limit is reached. -1 is unlimited.--volname string Set the volume name (not supported by all OSes).--write-back-cache Makes kernel buffer writes before sending them to rclone. Without this, writethrough caching is used.
  13. Thanks for the scripts! I'm going to get away from plexdrive and try this out today. Edit: Could you post how your rclone configs are? These are the ones I'm trying to understand to edit the script. mkdir -p /mnt/disks/rclone_vfs mkdir -p /mnt/disks/rclone_cache_old Currently I have this sole crypt [uploadcrypt] type = crypt remote = google:crypt filename_encryption = standard directory_name_encryption = true password = *** ENCRYPTED *** password2 = *** ENCRYPTED *** This cache which reads both of the Movies and Series folders inside of the crypt [plexcache] type = cache remote = uploadcrypt:/ plex_url = http://192.168.0.223:32400 plex_username = slimshizn plex_password = *** ENCRYPTED *** chunk_size = 5M info_age = 24h chunk_total_size = 10G Other than the 'plexcache' I'm pretty much setup the same inside of https://blog.laubacher.io/blog/unlimited-plex-server-on-unraid this guide. So the gdrivecrypt containing /mnt/disks/pd/crypt would now not be in use.
  14. Anyone who's using https://blog.laubacher.io/blog/unlimited-plex-server-on-unraid Are you having issues with the media taking forever to load or not load at all? I'm thinking it has to do with the rclone mount options listed here... rclone mount --max-read-ahead 512M --allow-other --allow-non-empty -v --buffer-size 1G gdrivecrypt: /mnt/disks/crypt & If any rclone/plexdrive pro's can help me out with this one I can't wrap my head around it.
  15. After a server reboot it was updated.
  16. Yeah, I have 1.41 installed right now (not latest). It's not showing an update on the plugin page.
  17. If I have the stable downloaded, is there a way to update that to a version with cache or transfer to the beta version?
  18. Having this issue go on sometimes. Sometimes after a reboot it doesn't show up but sometimes it does. May 29 21:39:23 Tower kernel: i801_smbus 0000:00:1f.3: SMBus is busy, can't use it! May 29 21:41:54 Tower kernel: i801_smbus 0000:00:1f.3: Timeout waiting for interrupt! May 29 21:41:54 Tower kernel: i801_smbus 0000:00:1f.3: Transaction timeout May 29 21:41:54 Tower kernel: i801_smbus 0000:00:1f.3: Failed terminating the transaction May 29 21:41:54 Tower kernel: i801_smbus 0000:00:1f.3: Transaction failed May 29 21:41:54 Tower kernel: i801_smbus 0000:00:1f.3: SMBus is busy, can't use it! This then stops and doesn't happen again while the server remains on, only after reboots. Currently running 6.5.2. Followed all instructions before upgrading.
  19. Getting this in the logs, which Didn't happen in 6.5.0, Mind you it stopped after that last line, but I'm unsure of what to do about it. May 6 18:41:31 Tower emhttpd: nothing to sync May 6 18:41:31 Tower emhttpd: error: send_file, 139: Broken pipe (32): sendfile: /usr/local/emhttp/logging.htm May 6 18:41:31 Tower emhttpd: error: send_file, 139: Broken pipe (32): sendfile: /usr/local/emhttp/logging.htm
×
×
  • Create New...