• Unraid OS version 6.7.0-rc5 available


    limetech

    As explained here there was a pretty significant flaw introduced way back during Linux kernel 4.19 development having to do with page caching.  The most obvious effect with Unraid was to cause spin-up of drives not involved in large transfers due to cached device top-level directory i-nodes getting reallocated prematurely.  The latest kernel patch release (4.19.24) fixes this issue.

     

    More webGUI refinements are also included.

     

    Version 6.7.0-rc5 2019-02-22

    Linux kernel:

    • version: 4.19.24

    Management:

    • update smartmontools drivedb and hwdata/{pci.ids,usb.ids,oui.txt,manuf.txt}
    • webgui: Syslog: sort logs
    • webgui: Dashboard: replace inline style statements for style section
    • webgui: Dashboard: added control buttons
    • webgui: Updated icons and cases
    • webgui: Suppress PHP warnings from corrupted XML files
    • Like 3



    User Feedback

    Recommended Comments



    2 hours ago, GreySyntax said:

    libva / vainfo is unable to open the device with an unknown error looks like it may be an issue with me using an outdated intel-vaapi-driver that needs a similar patch I'll dig further tonight.

    My 9900k has its hopes pinned on you. Good luck!

    Link to comment
    12 hours ago, limetech said:

    We can easily add that patch to 4.19, but what do you mean by this?

    After doing some more digging from what i can tell libva (ffmpeg, vainfo, intel_gpu_top) all fail to connect to the device, i've tried updating libva (and friends) but it seems something else is missing. Unfortunately it doesn't seem to be as simple as adding the missing chipset id. ☹️

    • Upvote 2
    Link to comment
    2 minutes ago, GreySyntax said:

    After doing some more digging from what i can tell libva (ffmpeg, vainfo, intel_gpu_top) all fail to connect to the device, i've tried updating libva (and friends) but it seems something else is missing. Unfortunately it doesn't seem to be as simple as adding the missing chipset id. ☹️

    Thanks for digging into that, then we should forget about the patch for 4.19 kernel?

    • Like 2
    Link to comment
    20 minutes ago, limetech said:

    Thanks for digging into that, then we should forget about the patch for 4.19 kernel?

    I think leaving it out is the best bet, thanks for being open to including it though :)

    • Upvote 2
    Link to comment
    40 minutes ago, GreySyntax said:

    After doing some more digging from what i can tell libva (ffmpeg, vainfo, intel_gpu_top) all fail to connect to the device, i've tried updating libva (and friends) but it seems something else is missing. Unfortunately it doesn't seem to be as simple as adding the missing chipset id. ☹️

    Thanks for trying to figure this out! Looks like it going to be a bit before we 9900k owners get hardware video  decoce/encode support.

    Link to comment

    Hello!

     

    I've been using 6.7.0-rc5 almost since launch and I've noticed the network speed drops quite a bit. Mostly I noticed it on torrents but it's hard to tell as the connection is not as stable.

     

    So I setup a little experiment. I've tried to download a 10GB file from Internet using the following command: wget https://speed.hetzner.de/10GB.bin

     

    - Test using unRaid, and here's the download graph https://d.pr/i/DM9R7q

    - Test using a VM (pfSense) which is running inside unRaid but with a 4 port NIC on passthrough https://d.pr/i/2P5FZn

     

    As you can see the connection is much more stable with the pfSense VM. I've also tried it using my iMac and got the same result, stable and steady download speed.

     

     

     

    Edited by bluepr0
    Link to comment
    On 3/7/2019 at 6:16 PM, bluepr0 said:

    Hello!

     

    I've been using 6.7.0-rc5 almost since launch and I've noticed the network speed drops quite a bit. Mostly I noticed it on torrents but it's hard to tell as the connection is not as stable.

     

    So I setup a little experiment. I've tried to download a 10GB file from Internet using the following command: wget https://speed.hetzner.de/10GB.bin

     

    - Test using unRaid, and here's the download graph https://d.pr/i/DM9R7q

    - Test using a VM (pfSense) which is running inside unRaid but with a 4 port NIC on passthrough https://d.pr/i/2P5FZn

     

    As you can see the connection is much more stable with the pfSense VM. I've also tried it using my iMac and got the same result, stable and steady download speed.

     

     

     

     

    you should load up iperf3 / ethr and test internally from within your own network.

    eliminate as many networking elements and unknown variables you can.

     

    may find out your isp just has bad peering.. or your firewall rules are the cause.. etc

     

    Link to comment
    11 hours ago, zoggy said:

     

    you should load up iperf3 / ethr and test internally from within your own network.

    eliminate as many networking elements and unknown variables you can.

     

    may find out your isp just has bad peering.. or your firewall rules are the cause.. etc

     

    Yes! just tried with iperf3 and here's the results

     

    Run iperf3 as a server on both the unRaid machine (xserver) and the pfSense machine (fw). Connected as a client my iMac

     

    Here's the video for the unRaid machine https://d.pr/v/y0fI6b

    Here's the video for the pfSense machine https://d.pr/v/CZk9YG

     

    As you can see the unRaid machine drops the speed every X seconds while the pfSense machine keeps it stable

    Link to comment
    1 hour ago, Dazog said:

    Can the next beta include the latest Linux firmware from Feb 21st?

    Yes

    • Like 1
    Link to comment
    5 hours ago, bluepr0 said:

    Yes! just tried with iperf3 and here's the results

     

    Run iperf3 as a server on both the unRaid machine (xserver) and the pfSense machine (fw). Connected as a client my iMac

     

    Here's the video for the unRaid machine https://d.pr/v/y0fI6b

    Here's the video for the pfSense machine https://d.pr/v/CZk9YG

     

    As you can see the unRaid machine drops the speed every X seconds while the pfSense machine keeps it stable

     

    from your test, looks like you did tcp testing and see the problem.

     

    Quote

    Congestion Window (cwnd) is a TCP state variable that limits the amount of data the TCP can send into the network before receiving an ACK. The Receiver Window (rwnd) is a variable that advertises the amount of data that the destination side can receive. Together, the two variables are used to regulate data flow in TCP connections, minimize congestion, and improve network performance.

     

    so now you could try udp and see if it also has an issue. but regardless now you should packet capture and see what happens at the dips. you can use wireshark and do an io graph to make it easy to align and search.

     

    example:

     

    side question, what mtu are you using and have you checked your nic stats to make sure you dont have runts/giants and/or errors?

    Link to comment
    5 hours ago, zoggy said:

     

    from your test, looks like you did tcp testing and see the problem.

     

     

    so now you could try udp and see if it also has an issue. but regardless now you should packet capture and see what happens at the dips. you can use wireshark and do an io graph to make it easy to align and search.

     

    example:

     

    side question, what mtu are you using and have you checked your nic stats to make sure you dont have runts/giants and/or errors?

    Hey, thanks for your reply. 

     

    I've tried UDP and it seems to not drop. Wondering why is this happening tho, my server NIC is the Intel 210.

     

    MTU I believe is default 1500. As for the NIC stats I checked it on pfSense because it's easy to see collisions, errors, etc but not sure how to check it on unRaid (searched for plugins but the one I found doesn't provide that info)

     

    What I think I’m going to do is put another computer in the network and do the iperf3 with my iMac. That should hopefully show some light if it’s related to the server or if it’s maybe a switch problem

    Edited by bluepr0
    Link to comment
    10 hours ago, bluepr0 said:

    Hey, thanks for your reply. 

     

    I've tried UDP and it seems to not drop. Wondering why is this happening tho, my server NIC is the Intel 210.

     

    MTU I believe is default 1500. As for the NIC stats I checked it on pfSense because it's easy to see collisions, errors, etc but not sure how to check it on unRaid (searched for plugins but the one I found doesn't provide that info)

     

    What I think I’m going to do is put another computer in the network and do the iperf3 with my iMac. That should hopefully show some light if it’s related to the server or if it’s maybe a switch problem

     

    you can just ssh to your unraid box and do "ifconfig eth0" for the info.

    also the unraid gui dashboard says the info as well but just more tedious as you have to change the drop down from general info > counters > errors to see everything.

    Link to comment
    1 hour ago, zoggy said:

     

    you can just ssh to your unraid box and do "ifconfig eth0" for the info.

    also the unraid gui dashboard says the info as well but just more tedious as you have to change the drop down from general info > counters > errors to see everything.

    Gotcha! I don't see any errors, all are at 0.

     

    I've now tried running the iperf3 server on unRaid and connected with another computer.

     

    If I run iperf3 -c 10.0.1.38 -i 1 -t 3600 -V I get no issues

    Quote

    [  4]   0.00-1.00   sec   113 MBytes   949 Mbits/sec  143    215 KBytes       

    [  4]   1.00-2.00   sec   112 MBytes   941 Mbits/sec  219    307 KBytes       

    [  4]   2.00-3.00   sec   112 MBytes   943 Mbits/sec   67    153 KBytes       

    [  4]   3.00-4.00   sec   111 MBytes   935 Mbits/sec  132    184 KBytes       

    [  4]   4.00-5.00   sec   112 MBytes   939 Mbits/sec  132    184 KBytes       

    [  4]   5.00-6.00   sec   112 MBytes   942 Mbits/sec  132    205 KBytes       

    [  4]   6.00-7.00   sec   112 MBytes   940 Mbits/sec  132    141 KBytes       

    [  4]   7.00-8.00   sec   112 MBytes   938 Mbits/sec  154    273 KBytes       

    [  4]   8.00-9.00   sec   112 MBytes   936 Mbits/sec  110    140 KBytes       

    [  4]   9.00-10.00  sec   112 MBytes   939 Mbits/sec  121    205 KBytes       

    [  4]  10.00-11.00  sec   112 MBytes   944 Mbits/sec  121    208 KBytes       

    [  4]  11.00-12.00  sec   112 MBytes   939 Mbits/sec  143   73.5 KBytes       

    [  4]  12.00-13.00  sec   112 MBytes   937 Mbits/sec  186    240 KBytes       

    [  4]  13.00-14.00  sec   112 MBytes   942 Mbits/sec  143   72.1 KBytes       

    [  4]  14.00-15.00  sec   112 MBytes   939 Mbits/sec  110    209 KBytes       

    [  4]  15.00-16.00  sec   112 MBytes   936 Mbits/sec  121    156 KBytes       

    [  4]  16.00-17.00  sec   112 MBytes   938 Mbits/sec  177    307 KBytes       

    [  4]  17.00-18.00  sec   112 MBytes   941 Mbits/sec  187   82.0 KBytes       

    [  4]  18.00-19.00  sec   112 MBytes   938 Mbits/sec  176    148 KBytes       

    [  4]  19.00-20.00  sec   112 MBytes   940 Mbits/sec  107    116 KBytes       

    [  4]  20.00-21.00  sec   112 MBytes   942 Mbits/sec  143    154 KBytes       

    [  4]  21.00-22.00  sec   112 MBytes   936 Mbits/sec  198    143 KBytes       

    [  4]  22.00-23.00  sec   111 MBytes   929 Mbits/sec   88    253 KBytes       

    [  4]  23.00-24.00  sec   112 MBytes   938 Mbits/sec  243   73.5 KBytes       

    [  4]  24.00-25.00  sec   112 MBytes   938 Mbits/sec   77    249 KBytes       

    [  4]  25.00-26.00  sec   112 MBytes   939 Mbits/sec  242    201 KBytes       

    [  4]  26.00-27.00  sec   112 MBytes   942 Mbits/sec  110    204 KBytes       

    [  4]  27.00-28.00  sec   111 MBytes   934 Mbits/sec  110    204 KBytes 

     

    but if I run iperf3 -c 10.0.1.38 -i 1 -t 3600 -V -R (with -R for reversing) I get drops from time to time

    Quote

    [  4]   0.00-1.00   sec   106 MBytes   886 Mbits/sec                  

    [  4]   1.00-2.00   sec   105 MBytes   884 Mbits/sec                  

    [  4]   2.00-3.00   sec   108 MBytes   907 Mbits/sec                  

    [  4]   3.00-4.00   sec   105 MBytes   882 Mbits/sec                  

    [  4]   4.00-5.00   sec   108 MBytes   906 Mbits/sec                  

    [  4]   5.00-6.00   sec   106 MBytes   892 Mbits/sec                  

    [  4]   6.00-7.00   sec   105 MBytes   881 Mbits/sec                  

    [  4]   7.00-8.00   sec   107 MBytes   896 Mbits/sec                  

    [  4]   8.00-9.00   sec   104 MBytes   870 Mbits/sec                  

    [  4]   9.00-10.00  sec   103 MBytes   864 Mbits/sec                  

    [  4]  10.00-11.00  sec  93.8 MBytes   786 Mbits/sec                  

    [  4]  11.00-12.00  sec   105 MBytes   882 Mbits/sec                  

    [  4]  12.00-13.00  sec   108 MBytes   907 Mbits/sec                  

    [  4]  13.00-14.00  sec   105 MBytes   879 Mbits/sec                  

    [  4]  14.00-15.00  sec   106 MBytes   889 Mbits/sec                  

    [  4]  15.00-16.00  sec   108 MBytes   904 Mbits/sec                  

    [  4]  16.00-17.00  sec   107 MBytes   895 Mbits/sec                  

    [  4]  17.00-18.00  sec   103 MBytes   867 Mbits/sec                  

    [  4]  18.00-19.00  sec   108 MBytes   910 Mbits/sec                  

    [  4]  19.00-20.00  sec   105 MBytes   882 Mbits/sec                  

    [  4]  20.00-21.00  sec   107 MBytes   896 Mbits/sec                  

    [  4]  21.00-22.00  sec   104 MBytes   875 Mbits/sec                  

    [  4]  22.00-23.00  sec   104 MBytes   876 Mbits/sec                  

    [  4]  23.00-24.00  sec   104 MBytes   872 Mbits/sec                  

    [  4]  24.00-25.00  sec   108 MBytes   903 Mbits/sec                  

    [  4]  25.00-26.00  sec   103 MBytes   864 Mbits/sec                  

    [  4]  26.00-27.00  sec   106 MBytes   887 Mbits/sec                  

    [  4]  27.00-28.00  sec   107 MBytes   898 Mbits/sec                  

    [  4]  28.00-29.00  sec   103 MBytes   866 Mbits/sec                  

    [  4]  29.00-30.00  sec  88.0 MBytes   738 Mbits/sec   

     

    I think I'm going to install pfSense on the unRaid server computer as bare-metal and test. This is driving me crazy haha

    Link to comment

    Alright, I've installed pfSense on the unRaid server but as a bare-metal. Then I run the iperf3 server on the pfSense bare-metal box and run the client in another PC. Both tests

    ```iperf3 -c 10.0.1.1 -i 1 -t 3600 -V -R``` 

    and

    ```iperf3 -c 10.0.1.1 -i 1 -t 3600 -V``` 

    shows steady speeds, sometimes drops from 112 MBytes/sec to 111 MB/sec but that's about it.

     

    NOTE: I made this test both testing the integrated NIC (the one unRaid uses to connect) and the external PCIe Intel PRO/1000, the one pfSense VM uses on unRaid (passthrough). Both are working good speed-wise.

    Link to comment

    I've also tried downloading from internet the 10GB.bin file I mentioned earlier as follows

    Bare-metal pfSense

    - Download from pfSense

    - Download from iMac

     

    unRaid server (so pfSense is virtualised)

    - Download from iMac 

    - Download from pfSense

    - Download from unRaid

     

    As you can see in this image where I put together all the graphs, only one that is not steady is unRaid https://d.pr/i/wva5Rv

    Link to comment
    12 minutes ago, eXtremeSHOK said:

    Any chance for 4.20 kernel , or you sticking with 4.19 for 6.7 and 4.20 for 6.8 ?

     

    On previous...

     

     

    Link to comment

    Untitled.thumb.png.d80df81979c31f8375bb3d4fbf3e65e5.png

     

    Is this a new feature to 6.7? The ability to click on the drive and have it popup a Disk Log? If it is this is super useful. I had a drive give me an error and I had an idea it was my new SSD, but I wasn't 100% sure. Clicked on the image and confirmed what I thought.

     

    If this is new NICE!!!!!!

    If this is old News I feel kinda dumb now. Lol

     

    Either way thanks for this. 🤣

    Link to comment

    updated a z420 from previous RC w/out any apparent issues.

     

    This is new: (diags at bottom)

     

    Mar 12 08:26:01 Twins kernel: crond[15054]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:26:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:26:01 Twins kernel: crond[15053]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:26:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:26:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:27:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:27:01 Twins kernel: crond[22053]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:27:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:27:01 Twins kernel: crond[22052]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:27:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:27:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:28:01 Twins kernel: crond[26118]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:28:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:28:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:28:01 Twins kernel: crond[26117]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:28:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:28:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:29:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:29:01 Twins kernel: crond[27268]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:29:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:29:01 Twins kernel: crond[27267]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:29:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:29:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:30:01 Twins kernel: crond[28418]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:30:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:30:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:30:01 Twins kernel: crond[28417]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:30:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:30:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:31:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:31:01 Twins kernel: crond[29408]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:31:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:31:01 Twins kernel: crond[29407]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:31:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:31:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:32:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:32:01 Twins kernel: crond[31676]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:32:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:32:01 Twins kernel: crond[31675]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:32:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:32:11 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:33:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:33:01 Twins kernel: crond[2193]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:33:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:33:01 Twins kernel: crond[2192]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:33:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:33:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:34:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:34:01 Twins kernel: crond[3935]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:34:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:34:01 Twins kernel: crond[3934]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:34:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:34:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:35:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:35:01 Twins kernel: crond[5373]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:35:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:35:01 Twins kernel: crond[5372]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:35:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:35:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:36:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:36:01 Twins kernel: crond[6946]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:36:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:36:01 Twins kernel: crond[6945]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:36:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:36:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:37:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:37:01 Twins kernel: crond[8187]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:37:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:37:01 Twins kernel: crond[8186]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:37:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:37:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:38:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:38:01 Twins kernel: crond[9416]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:38:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:38:01 Twins kernel: crond[9415]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:38:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:38:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:39:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:39:01 Twins kernel: crond[10457]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:39:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:39:01 Twins kernel: crond[10456]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:39:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:39:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:40:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:40:01 Twins kernel: crond[11548]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:40:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:40:01 Twins kernel: crond[11549]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:40:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:40:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:40:35 Twins kernel: mdcmd (37): spindown 1
    Mar 12 08:41:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:41:01 Twins kernel: crond[12623]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:41:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:41:01 Twins kernel: crond[12622]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:41:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:41:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:42:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:42:01 Twins kernel: crond[14002]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:42:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:42:01 Twins kernel: crond[14001]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:42:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:42:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:43:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:43:02 Twins kernel: crond[15367]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:43:02 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:43:02 Twins kernel: crond[15366]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:43:02 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:43:07 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:44:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:44:01 Twins kernel: crond[16455]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:44:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:44:01 Twins kernel: crond[16454]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:44:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:44:06 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:45:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:45:01 Twins kernel: crond[17462]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:45:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:45:01 Twins kernel: crond[17461]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:45:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:45:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:46:01 Twins kernel: crond[18454]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:46:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:46:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:46:01 Twins kernel: crond[18455]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:46:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:46:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:47:01 Twins crond[1753]: exit status 1 from user root /usr/bin/run-parts /etc/cron.hourly 1> /dev/null
    Mar 12 08:47:01 Twins kernel: crond[19682]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:47:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:47:01 Twins kernel: crond[19681]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:47:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:47:01 Twins kernel: crond[19680]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:47:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:47:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null
    Mar 12 08:47:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:48:01 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix.system.stats/scripts/sa1 1 1 &>/dev/null
    Mar 12 08:48:01 Twins kernel: crond[20797]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:48:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:48:01 Twins kernel: crond[20796]: segfault at 149b00000008 ip 0000149bdd7f3858 sp 00007ffcdde63720 error 4 in ld-2.28.so (deleted)[149bdd7e4000+20000]
    Mar 12 08:48:01 Twins kernel: Code: 8b 1b 48 03 58 08 48 8b 52 08 48 c1 ea 03 85 d2 74 23 8d 42 ff 4c 8d 74 c3 08 0f 1f 84 00 00 00 00 00 4c 89 ea 4c 89 e6 89 ef <ff> 13 48 83 c3 08 49 39 de 75 ed 5b 5d 41 5c 41 5d 41 5e c3 0f 1f
    Mar 12 08:48:16 Twins crond[1753]: exit status 1 from user root /usr/local/emhttp/plugins/dynamix/scripts/monitor &> /dev/null

     

    twins-diagnostics-20190312-1253.zip

    Edited by 1812
    Link to comment
    On 3/11/2019 at 10:24 PM, kizer said:

    Is this a new feature to 6.7? The ability to click on the drive and have it popup a Disk Log? If it is this is super useful. I had a drive give me an error and I had an idea it was my new SSD, but I wasn't 100% sure. Clicked on the image and confirmed what I thought.

    I don't remember when it was added, but it is in the 6.6 branch as well.

    Link to comment
    1 hour ago, cpshoemake said:

    I don't remember when it was added, but it is in the 6.6 branch as well.

    It's been there for most (if not all) of the 6.x series

    Link to comment

    Not sure it's 6.7.0-RC5 related problem but I did the cache (pool) replacement routine,

    and now the docker service won't start, either when I let it create the docker image,

    or copying a the pre-cache-upgrade docker image from a backup.

    ------------------------------

    Docker Service failed to start.

     

    Warning: stream_socket_client(): unable to connect to unix:///var/run/docker.sock (Connection refused) in /usr/local/emhttp/plugins/dynamix.docker.manager/include/DockerClient.php on line 655
    Couldn't create socket: [111] Connection refused
    Warning: Invalid argument supplied for foreach() in /usr/local/emhttp/plugins/dynamix.docker.manager/include/DockerClient.php on line 827

    Warning: stream_socket_client(): unable to connect to unix:///var/run/docker.sock (Connection refused) in /usr/local/emhttp/plugins/dynamix.docker.manager/include/DockerClient.php on line 655
    Couldn't create socket: [111] Connection refused
    Warning: Invalid argument supplied for foreach() in /usr/local/emhttp/plugins/dynamix.docker.manager/include/DockerClient.php on line 891

     

    No Docker containers installed

    Edited by Gico
    Link to comment
    2 hours ago, Gico said:

    Docker Service failed to start.

    Please start your server in safe mode and retest.

    Link to comment



    Guest
    This is now closed for further comments

  • Status Definitions

     

    Open = Under consideration.

     

    Solved = The issue has been resolved.

     

    Solved version = The issue has been resolved in the indicated release version.

     

    Closed = Feedback or opinion better posted on our forum for discussion. Also for reports we cannot reproduce or need more information. In this case just add a comment and we will review it again.

     

    Retest = Please retest in latest release.


    Priority Definitions

     

    Minor = Something not working correctly.

     

    Urgent = Server crash, data loss, or other showstopper.

     

    Annoyance = Doesn't affect functionality but should be fixed.

     

    Other = Announcement or other non-issue.