Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Dynamix - V6 Plugins

Featured Replies

  • Author
3 minutes ago, spl147 said:

here is the output: freeze standby

 

Do you have a problem with the new version?

 

  • Replies 4.4k
  • Views 1.4m
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • It has been some time since I visited the Unraid forums. Due to health issues I had to take a break, and unfortunately this break took way longer than anticipated. But I am back and will sta

  • Phoenix Down
    Phoenix Down

    Hi @bonienl, is this the right channel to report a bug? If not, please point me in the right direction     I've been noticing an issue with Autofan in the last couple of months. It seems lik

  • Today has been a productive day   I have updated several Dynamix plugins, mainly bug fixes. Please check your plugins to get the updates.

Posted Images

Just now, bonienl said:

 

Do you have a problem with the new version?

 

waiting on a parity check to complete so i can test

 

With the new Version 3.0.5, Sleep doesn't work anymore.

EDIT: It seems that the Button is not working. The script itself sends the server to sleep if the timesettings are reached.

EDIT2: FYI: Dynamix System Buttons Plugin doesn't work too.

Edited by Zonediver

How can i downgrade my S3 plugin to the version before?

I was searching on Github but i cant find the plugin - just very old versons 2 years ago...

Edited by Zonediver

same here.

 

s3_sleep version: 3.0.5 after reboot status is stopped. 
After re-save it shows running till next reboot.

 

 

first thought it´s because of my random wake up script 

time=09:55
now=$(date +%s)
other=$(date -d $time +%s)
dayofweek=$(date +%u)
if [ $now -ge $other  ] && [ $dayofweek -lt 5 ]
then
	echo `date '+%s' --date='tomorrow 09:55:00'` > /sys/class/rtc/rtc0/wakealarm
elif [ $dayofweek -ge 5 ]
then
   echo `date '+%s' --date='next monday 09:55:00'` > /sys/class/rtc/rtc0/wakealarm
else
   echo `date '+%s' --date='today 09:55:00'` > /sys/class/rtc/rtc0/wakealarm
fi

but tested without it and same result. 

 

 

p.s this bad syntax is the only one that worked for me. 

 

 

 

Edited by feraay

14 hours ago, Zonediver said:

With the new Version 3.0.5, Sleep doesn't work anymore.

EDIT: It seems that the Button is not working. The script itself sends the server to sleep if the timesettings are reached.

EDIT2: FYI: Dynamix System Buttons Plugin doesn't work too.

 

S3 Sleep v3.0.5 is not working for me as well. In my case neither the buttons nor the sleep timer appears to be working correctly. 

  • Author

For the time being I reverted back to the previous version. Need to do more research o.O

44 minutes ago, bonienl said:

For the time being I reverted back to the previous version. Need to do more research o.O

Thanks :)

On 22.9.2016 at 10:28 PM, Guzzi said:

Hi bonienl, I know you're busy with latest GUI update implementation, just wanted to ask, if this could get either more testing or updated (maybe with an option) to the repo. Works fine for me, so I am personally fine with it, just have to overwrite it whenever I boot.

@johnnie.black, as you were interested too, would you like to test it? Simply rename attached file of OP to autofan and copy it into /usr/local/emhttp/plugins/dynamix.system.autofan/scripts and restart the tool (e.g. update a setting in the GUI will restart it using the updated script).

Hi bonienl,

seems the former attachment is gone during forum migration - still would like to ask you to add the exclusion of SSDs within the autofan script.

The relevant change is here:


# Obtain the ID of your flash drive (your flash drive is named "UnRaid" right?)
flash=/dev/`ls -l /dev/disk/by-label| grep UNRAID | cut -d/ -f3 | cut -c 1-3`

# Obtain the SSDs of your system
ssds=/dev/`ls -l /dev/disk/by-id| grep SSD | grep -v part | cut -d/ -f3 | cut -c 1-3`

# Count the number of drives in your array (ignoring the flash drive we identified)
# NUM_OF_DRIVES=$(ls /dev/[hs]d? | grep -v "$flash" | wc -l)
NUM_OF_DRIVES=$(ls /dev/[hs]d? | grep -v "$flash" | grep -v "$ssds" | wc -l)

# Identify the drives in your array so we can test their temperature
COUNT=1
# for d in $(ls /dev/[hs]d? | grep -v "$flash"); do
for d in $(ls /dev/[hs]d? | grep -v "$flash" | grep -v "$ssds"); do
  HD[$COUNT]=$d
  #echo HDD=${HD[$COUNT]}                               # Uncomment for debugging
  COUNT=$[$COUNT+1]
done

function_get_highest_hd_temp() {
[...]

instead of hardcoded grep of 'SSD' this could also be replaced by a GUI editable search expression or regex...

Warning: file_get_contents(/sys/devices/platform/nct6775.656/hwmon/hwmon1/fan6_min): failed to open stream: No such file or directory in /usr/local/emhttp/plugins/dynamix.system.autofan/include/SystemFan.php on line 67Warning: file_put_contents(/sys/devices/platform/nct6775.656/hwmon/hwmon1/fan6_min): failed to open stream: Permission denied in /usr/local/emhttp/plugins/dynamix.system.autofan/include/SystemFan.php on line 69Warning: file_put_contents(/sys/devices/platform/nct6775.656/hwmon/hwmon1/fan6_min): failed to open stream: Permission denied in /usr/local/emhttp/plugins/dynamix.system.autofan/include/SystemFan.php on line 86

 

Any ideas guys?

Im having multiple issues with using autofan.  Im using a SuperMicro X10SL7-F on Unraid 6.2.4.

 

PWM fan detection almost never detects the fans and when it does detecting the Minimum PWM value never spins the fans up and down to detect the values.  Any idea on where to start tracking this issue down?

  • Author
On 3/12/2017 at 9:46 AM, GreenEyedMonster said:

Warning: file_get_contents(/sys/devices/platform/nct6775.656/hwmon/hwmon1/fan6_min): failed to open stream: No such file or directory in /usr/local/emhttp/plugins/dynamix.system.autofan/include/SystemFan.php on line 67Warning: file_put_contents(/sys/devices/platform/nct6775.656/hwmon/hwmon1/fan6_min): failed to open stream: Permission denied in /usr/local/emhttp/plugins/dynamix.system.autofan/include/SystemFan.php on line 69Warning: file_put_contents(/sys/devices/platform/nct6775.656/hwmon/hwmon1/fan6_min): failed to open stream: Permission denied in /usr/local/emhttp/plugins/dynamix.system.autofan/include/SystemFan.php on line 86

 

Any ideas guys?

 

It looks like your current fan assignment is not present anymore. Check/change your setting for PWM controller and do a new detection of the PWM fan.

  • Author
23 hours ago, Medwynd said:

Im having multiple issues with using autofan.  Im using a SuperMicro X10SL7-F on Unraid 6.2.4.

 

PWM fan detection almost never detects the fans and when it does detecting the Minimum PWM value never spins the fans up and down to detect the values.  Any idea on where to start tracking this issue down?

 

Do you have multiple choices for PWM controller? If yes, try different ones and use detection with each selection.

This is regarding the S3 sleep plugin. I plan to use it for shutting down my unraid box every night. I was wondering if the shutdown procedure cleanly stops all the docker containers before shutting down or do I have to use any pre-script command before the shutdown procedure begins?

10 hours ago, bonienl said:

 

Do you have multiple choices for PWM controller? If yes, try different ones and use detection with each selection.

Yes it does, 1 controller for each of 3 fans but the behavior is erratic at best.  Switching pwn controllers does not change the values in the rest of the fields.  Sometimes the detect works and sometimes it does not for the same controller.  Trying to detect the Minimum PWM value after it does detect a fan sometimes makes the fan just spin up and down in rapid succession instead of all the way down then all the way up again.  Sometimes detecting the minimum never spins the fan down and just sets back to detect.  It is so random I cant find a rhyme or reason to what it is doing.

  • Author
2 hours ago, squashem said:

This is regarding the S3 sleep plugin. I plan to use it for shutting down my unraid box every night. I was wondering if the shutdown procedure cleanly stops all the docker containers before shutting down or do I have to use any pre-script command before the shutdown procedure begins?

 

The shutdown of the plugin peforms a "regular" shutdown and dockers/vms will be stopped in the process.

 

Having an issue with the System Stats plugin.  I have version 2016.11.03 - The network system stats is not accurate.  It will occasionally show a single spike that is so extreme I can't see the rest of the statistics.   There is no way I am sending at over 120Gb/sec

 

 

 

that happen on mine every once in a while if i leave a tab open.

I'm wondering what would be the downsides to have dynamix SSD trim changed from executing

Quote

fstrim -v /mnt/cache

to be instead

Quote

fstrim -a -v

The latter will do a trim on all supported devices found (in addition, it also does a trim on the two btrfs loopback images regardless of what kind of device they are stored on...

 

If there is no downside, then why not change the plugin to do this?  (or does -a trim ALL btrfs volumes regardless of the type of device -> which may be pointless on spinners)

Edited by Squid

4 hours ago, Squid said:

If there is no downside, then why not change the plugin to do this?  (or does -a trim ALL btrfs volumes regardless of the type of device -> which may be pointless on spinners)

 

Seems like a good option to me, don't see any downsides, It didn't spun up my HDDs so it didn't try to trimmed them, and this will take care of trimming any btrfs unassigned devices (XFS unassigned devices don't need it since they are mounted with the discard option, although from what I've read that's not recommended for NVMe devices, fstrim should be done instead).

  • Author
On 3/16/2017 at 9:03 AM, johnnie.black said:

 

Seems like a good option to me, don't see any downsides, It didn't spun up my HDDs so it didn't try to trimmed them, and this will take care of trimming any btrfs unassigned devices (XFS unassigned devices don't need it since they are mounted with the discard option, although from what I've read that's not recommended for NVMe devices, fstrim should be done instead).

 

Is there a way for you to test this and confirm?

 

I don't have the hardware myself to make these tests.

 

1 minute ago, bonienl said:

 

Is there a way for you to test this and confirm?

 

I don't have the hardware myself to make these tests.

 

 

I tested on 2 of my servers, one has a cache pool and 2 unassigned SSDs, those were the only ones trimmed (+ loop devices), disks were spun down and continued, so no issues, other server is my SSD only server, only the cache was trimmed since array SSDs don't support it, no errors also, looks like it only attempts to trim devices that support it.

 

 

  • Author
11 minutes ago, johnnie.black said:

 

I tested on 2 of my servers, one has a cache pool and 2 unassigned SSDs, those were the only ones trimmed (+ loop devices), disks were spun down and continued, so no issues, other server is my SSD only server, only the cache was trimmed since array SSDs don't support it, no errors also, looks like it only attempts to trim devices that support it.

 

 

 

You are quick :)

 

Thanks

It looks like the Cache Dirs plugin is preventing several of my drives from spinning down. I used the Open Files plugin to figure out that a find process was the only thing accessing the drives and after some forum searching realized that Cache Dirs might be the culprit. Sure enough, the drives seem to stay spun down after disabling Cache Dirs.

 

Is this a known issue? Or there any fixes or workarounds? I installed it long ago and didn't used to have this problem. I believe I'm using the default settings.

 

I'm on version 6.3.2.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.