Everything posted by Bolagnaise
-
SMBus Kernel Patch
Once again @ich777 thankyou very much for helping us RGB nerds. Your willingness to help this community is amazing.
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
As long as you are running rclone 1.58 or newer then rclone will continue to work normally. Essentially what is happening is google is deprecating the copy paste method for the client ID and secret from the admin console but only for ios,android and some other devices. The method rclone uses in 1.58 to re-authenticate to google is different. TLDR: Ensure your rclone plugin is up to date and everything will continue to work fine.
-
[SUPPORT] Plex Library Cleaner
-
[SUPPORT] Plex Library Cleaner
EDIT: Seems the latest build changed the config file path from /frontend to /config, update your docker container path and it will work. This error has popped up. I changed my appdata path from /mnt/user/appdata to /mnt/cache/appdata to bring it line with my other containers and this error appeared. I switched the config path back to the original but the error persists. I also deleted the container and xml from CA and reset up the container from scratch but the same error persists.
-
SMBus Kernel Patch
My server looks like this and i want to disable/change the RAM RGB to white/off. Currently without the kernal patch you cannot control the SMBUS for RAM with ASUS motherboards.
-
SMBus Kernel Patch
Potentially someone really nice like @ich777could develop this into a kernal patch for us unraid users using ASUS motherboards.
-
[SUPPORT] reven - FileFlows
How would i go about forcing plex to rescan the files if i have setup a basic x265/ac3 encode? Is there a plex plugin on the horizon? Could i just delete the original and force plex to rescan the folder?
-
Additional Scripts For User.Scripts Plugin
Just a quick update for anyone looking to implement autoheal in docker, i have found that adding -i to the curl command correctly return the 2OO OK http status for the /identify page, the http return is much shorter so i recommend it. Heres my advanced docker config for my plex server to add the health cmd too. Many thanks again to @Meles Meles --health-cmd 'curl -i --connect-timeout 15 --silent --show-error --fail 192.168.1.100:32400/identify'
-
Additional Scripts For User.Scripts Plugin
No problems, i found that that didnt work for me, and i ended up using IPADDRESS:32400/web/index.html as the /identify page returns a blank page for me. I searched for this and found several other people saying the same thing that this page is meant to return some form of information but instead just shows a blank page, either way its been running perfect for a few weeks now thanks to you.
-
Plex: Guide to Moving Transcoding to RAM
Interesting, i had it set too 6.
-
Plex: Guide to Moving Transcoding to RAM
Yeah my friend tried to download around 5 movies all around 10GB each at 1080p 8mbps quality and it caused my plex instance to crash multiple times using the new downloads feature, as already mentioned it seems to store the entire transcoded file in the /transcode mapping folder in its entirety until itās been downloaded by the client, if the ram becomes full the plex instance will lockup and crash. Iāve switched backed to NVME for my transcode and had him run the same test and the plex server has no issues. Hopefully plex allows us to map a separate downloads folder to store transcoded content that requires downloading in the future.
-
Plex: Guide to Moving Transcoding to RAM
So even with my plex ram cache set to 32G using @mgutt advanced config, im still seeing plex crash when a user tries to download multiple movies. My friend tried to download multiple movies in anticipation for an overseas trip and it was causing the plex instance to crash and the downlaods to fail completly. Looks like im going back to my NVME drive for plex transcodes.
-
Additional Scripts For User.Scripts Plugin
Can i ask why your using localhost:32400/identity and not localhost:32400/web/index.html as the website check. I get no response from that webpage when checking it using the curl command.
-
Additional Scripts For User.Scripts Plugin
Thank you!
-
Additional Scripts For User.Scripts Plugin
Yep, did that.
-
Additional Scripts For User.Scripts Plugin
Iām looking for a script that will restart my plex container using curl for those instances where it rarely goes down. Iāve found this script online but Iām not the best at debugging this and cant see to get it to work. #!/bin/bash name=Plex Media Server check and restart description=This script will restart PLEX if it does not respond after two attempts. arrayStarted=true dockerid=$(docker ps -aqf āname=plexā) if [ ā$dockeridā == āā ]; then echo āERR $(date -Is) - Could not get a docker id for docker name \āplex\ā.ā exit 1; fi Do not check between 1:55am to 2:30am currentTime=date +ā%H%M%Sā if [[ ! ( ā$currentTimeā < ā015500ā || ā$currentTimeā > ā023000ā ) ]]; then exit 0; fi firstcheck=$((curl -sSf -m30 https://myserver:32400/web/index.html) 2>&1) if [ ā$firstcheckā != āā ]; then echo āWRN $(date -Is) - Plex did not respond in first check, waiting 15 seconds..ā sleep 15 secondcheck=$((curl -sSf -m30 https://myserver:32400/web/index.html) 2>&1) if [ ā$secondcheckā != āā ]; then echo āWRN $(date -Is) - Plex did not respond in second check either, restarting docker container.ā echo āINF $(date -Is) - Stopping docker $dockerid.ā docker stop $dockerid echo āINF $(date -Is) - Waiting 15 seconds..ā sleep 15 echo āINF $(date -Is) - Starting docker $dockerid.ā docker start $dockerid else echo āINF $(date -Is) - Plex docker container responded on second attempt.ā fi else echo āINF $(date -Is) - Plex docker container responded on first attempt.ā fi`
-
[Support] PTRFRLL - Docker images
Just got to say, i found scrypted thanks to you, its a godsend for getting my unifi cameras into homekit secure video.
-
[Support] PTRFRLL - Docker images
How are you doing this? Via User scripts?
-
[Support] Akaunting
Installed and running, however my square plugin is deleted nightly and i have to reinstall it daily. Anyway to stop this minor inconvienece? Also, for anyone looking to use reverse proxy, use this subdomain template.
-
[Support] Linuxserver.io - Plex Media Server
https://forums.plex.tv/t/dead-in-the-water-after-version-1-23-6-4810-update-windows-10/730786/20
-
[Support] Linuxserver.io - Plex Media Server
Yep can also confirm version 1.23.3.4707-ebb5fe9f3 stops the crashing loop.
-
[Support] Linuxserver.io - Plex Media Server
iām having the exact same issue.
-
Unraid 6.9.0-rc1 - CPU TEMP NCT6687 Linux Driver Support
Perfect, thanks again!
-
Unraid 6.9.0-rc1 - CPU TEMP NCT6687 Linux Driver Support
-
How to Set Up a Multi-Streaming Server with Unraid
Are you ok š An OBS NDI CA container would be amazing.