December 5, 20196 yr Just read the work that went into releasing the latest version. Thank you to all that are involved in keeping this amazing addition to unraid working. I've been enjoying the benefits of it ever since it was released and as we all know how great it is to have this ability. I really appreciate it.I searched back a bit and didn't see anything recently about the work being done on combining the Nvidia build and the DVB build. That would be the next dream come true. Is there any place I can follow the development of that build? Seems like it's getting lost in this thread. Yeah, I'm just too tied up with work at the moment, I'll try and pick that up in the New YearSent from my Mi A1 using Tapatalk
December 6, 20196 yr Ok, I fully transferred over to the LinuxServer emby container - it works great! Thank you for working with me to troubleshoot this issue.
December 7, 20196 yr Hi guys, I've been using Unraid Nvidia for a couple months now with Plex and its been working great. I did notice however that whenever the Plex docker was restarted the fan on my P2000 would ramp up to about 90% until Plex was restarted. This wasn't bothersome as I always kept Plex running, however when I recently switched to Emby I noticed that the GPU fan would ramp to 75-90% whenever there were no running processes in nvidia smi, so as soon as a transcode completes the fan speeds up. I have tried to find solutions to this, but haven't come across anyone speaking of the same issue. My server is on my desk and the fan is tolerable but not ideal, does anyone know of a way to fix this? I am running version 6.7.2 and the fan is usually at about 55% with the GPU at 55-60C with a transcode running. At idle it is usually about 80% with the GPU at 35-40C. Thank you all.
December 7, 20196 yr 3 hours ago, satmeiler said: Hi guys, I've been using Unraid Nvidia for a couple months now with Plex and its been working great. I did notice however that whenever the Plex docker was restarted the fan on my P2000 would ramp up to about 90% until Plex was restarted. This wasn't bothersome as I always kept Plex running, however when I recently switched to Emby I noticed that the GPU fan would ramp to 75-90% whenever there were no running processes in nvidia smi, so as soon as a transcode completes the fan speeds up. I have tried to find solutions to this, but haven't come across anyone speaking of the same issue. My server is on my desk and the fan is tolerable but not ideal, does anyone know of a way to fix this? I am running version 6.7.2 and the fan is usually at about 55% with the GPU at 55-60C with a transcode running. At idle it is usually about 80% with the GPU at 35-40C. Thank you all. I can't remember the source, but I added the below script using the Userscripts plugin and have it running hourly (need to update to a shorter time window) that will check to see if the gpu is being used, otherwise return it to an idle state of P0. Others had cited that once the card was fired up it would not return to idle once done, this script check for any processes and then forces the return. See if it helps for you. #!/bin/bash TOKILL="" CPT_TRANSCODE=-1 CPT_SERVER=-1 for ELEMENT in $(lsof /dev/nvidia0 | awk '{print $1 "@" $2}') do IFS='@' read -r -a array <<< "$ELEMENT" if [ "${array[0]}" != "Xorg" ] && [ "${array[0]}" != "ffmpeg" ] then if [ "${array[0]}" = "Plex\x20T" ] then ((CPT_TRANSCODE++)) fi if [ "${array[0]}" = "Plex\x20M" ] then ((CPT_SERVER++)) TOKILL="${array[1]}" fi fi done if [ $CPT_SERVER -gt 0 ] && [ $CPT_TRANSCODE -lt 1 ] && [ "$1" != "test" ] then kill -9 "$TOKILL" fi if [ "$1" == "test" ] then echo "$TOKILL" fi Edited December 7, 20196 yr by dewlite
December 7, 20196 yr 5 hours ago, dewlite said: I can't remember the source, but I added the below script using the Userscripts plugin and have it running hourly (need to update to a shorter time window) that will check to see if the gpu is being used, otherwise return it to an idle state of P0. Others had cited that once the card was fired up it would not return to idle once done, this script check for any processes and then forces the return. See if it helps for you. #!/bin/bash TOKILL="" CPT_TRANSCODE=-1 CPT_SERVER=-1 for ELEMENT in $(lsof /dev/nvidia0 | awk '{print $1 "@" $2}') do IFS='@' read -r -a array <<< "$ELEMENT" if [ "${array[0]}" != "Xorg" ] && [ "${array[0]}" != "ffmpeg" ] then if [ "${array[0]}" = "Plex\x20T" ] then ((CPT_TRANSCODE++)) fi if [ "${array[0]}" = "Plex\x20M" ] then ((CPT_SERVER++)) TOKILL="${array[1]}" fi fi done if [ $CPT_SERVER -gt 0 ] && [ $CPT_TRANSCODE -lt 1 ] && [ "$1" != "test" ] then kill -9 "$TOKILL" fi if [ "$1" == "test" ] then echo "$TOKILL" fi Thank you, Ill give that a shot later today when I have time, I don't have any experience installing a script into the Nvidia Drivers, but I assume there is documentation about that. Ill report back if that fixes it.
December 7, 20196 yr 1 hour ago, Fiservedpi said: Download of RC 9 is going really slow today 20191207_135445.mp4 It's hosted on Digitalocean Spaces
December 8, 20196 yr 20 hours ago, dewlite said: I can't remember the source, but I added the below script using the Userscripts plugin and have it running hourly (need to update to a shorter time window) that will check to see if the gpu is being used, otherwise return it to an idle state of P0. Others had cited that once the card was fired up it would not return to idle once done, this script check for any processes and then forces the return. See if it helps for you. #!/bin/bash TOKILL="" CPT_TRANSCODE=-1 CPT_SERVER=-1 for ELEMENT in $(lsof /dev/nvidia0 | awk '{print $1 "@" $2}') do IFS='@' read -r -a array <<< "$ELEMENT" if [ "${array[0]}" != "Xorg" ] && [ "${array[0]}" != "ffmpeg" ] then if [ "${array[0]}" = "Plex\x20T" ] then ((CPT_TRANSCODE++)) fi if [ "${array[0]}" = "Plex\x20M" ] then ((CPT_SERVER++)) TOKILL="${array[1]}" fi fi done if [ $CPT_SERVER -gt 0 ] && [ $CPT_TRANSCODE -lt 1 ] && [ "$1" != "test" ] then kill -9 "$TOKILL" fi if [ "$1" == "test" ] then echo "$TOKILL" fi I installed the user scripts plugin and ran that script however I saw now change in the GPU temp. When I clicked view log, the log showed that the actual log was stored in the /tmp folder. I attempted to use midnight commander to copy that txt file somewhere it could be accessed. Midnight commander seems to work at random for me I'm not sure if I'm missing something but I was unable to perform any actions of the file. To install the script I mounted the flash share and browsed to the file created when I added a script with the plugin. I then copied the script from this post into that txt file and ran it. Am I doing all of this right?
December 8, 20196 yr 4 hours ago, satmeiler said: hen I clicked view log, the log showed that the actual log was stored in the /tmp folder. I attempted to use midnight commander to copy that txt file somewhere it could be accessed. Why not simply hit the download log button?
December 8, 20196 yr 23 hours ago, aptalca said: It's hosted on Digitalocean Spaces It's not downloading at all for me. Something up with the CDN?
December 8, 20196 yr It's not downloading at all for me. Something up with the CDN?Dude, I've already replied to you on the ls.io forum.Sent from my Mi A1 using Tapatalk
December 8, 20196 yr On 12/7/2019 at 4:57 AM, CHBMB said: RC9 uploaded Sent from my Mi A1 using Tapatalk It's not downloading at all for me. Traceroute to digitalocean is fine. What's up?
December 8, 20196 yr 2 minutes ago, CHBMB said: Dude, I've already replied to you on the ls.io forum. Sent from my Mi A1 using Tapatalk And I appreciate it. Also going to post in the Discord if that's alright with you. Edited December 8, 20196 yr by ripeart
December 8, 20196 yr 10 minutes ago, ripeart said: And I appreciate it. Also going to post in the Discord if that's alright with you. Are you being serious?
December 9, 20196 yr Let me start off by saying, thank you for the work that goes into this plugin. Honestly should be something that is built into Unraid by default. Anyway, I am now upgraded to 6.8 RC9 but I do not see my quadro card as an availble card. But using watch nvidia-smi I see my quadro (1080 is being used in a VM) Any reason why I no longer see the P2000? Thank you
December 9, 20196 yr 12 hours ago, Squid said: Why not simply hit the download log button? That downloaded the log telling me to access the tmp folder.
December 9, 20196 yr Interesting, I'm not sure how to proceed with the fan issue then, is this something anyone else has experienced?
December 9, 20196 yr 3 hours ago, Eggman1414 said: Let me start off by saying, thank you for the work that goes into this plugin. Honestly should be something that is built into Unraid by default. Anyway, I am now upgraded to 6.8 RC9 but I do not see my quadro card as an availble card. But using watch nvidia-smi I see my quadro (1080 is being used in a VM) Any reason why I no longer see the P2000? Thank you Probably since it's passed through to your vm?
December 9, 20196 yr 6 hours ago, saarg said: Probably since it's passed through to your vm? he is using the gtx1080 to the VM, not the P2000 Edited December 9, 20196 yr by sjaak
December 9, 20196 yr Let me start off by saying, thank you for the work that goes into this plugin. Honestly should be something that is built into Unraid by default. Anyway, I am now upgraded to 6.8 RC9 but I do not see my quadro card as an availble card. But using watch nvidia-smi I see my quadro (1080 is being used in a VM) Any reason why I no longer see the P2000? Thank youIs the Quadro still supported on the driver version?Sent from my Mi A1 using Tapatalk
December 9, 20196 yr 1 hour ago, CHBMB said: Is the Quadro still supported on the driver version? Sent from my Mi A1 using Tapatalk 440.36 Still list the P2000 https://www.nvidia.com/Download/driverResults.aspx/154997/en-us
Archived
This topic is now archived and is closed to further replies.