JIll

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by JIll

  1. same, updated remotely then discovered that remote not working anymore connected a display locally to the server and boot with gui I found that the bonding was set to "Yes" in network setting which resulting network failure, I have to : manually set the Bonding of eth0 to "No" > apply click "port up" of eth1 > apply reconfig both network cards done currently work great after reconfiguration
  2. tried, not working I have also tried replace "/sbin/init 0" to another command, not working too. Every time I short pressing power button, then grace shutdown. If I cannot fix this problem, I think I will take @JonathanM's suggestion, set boot immediately when there is power and disconnecting the power button header from the motherboard. I will update the status to closed, if anyone need my DIAGNOSTICS please let me know. Thanks.
  3. First of all, sorry for my bad English. The power button of my server is located on the top of my machine and my cat always accidently (in purpose?) short press the power button, resulting my unraid to shutdown. In 6.9.2, I commented a line in /etc/acpi/acpi_handler.sh to disable the power button action, worked fine. After upgrading to 6.10-RC3 today and I discover that this method is not working anymore. (my cat had shutdown my server twice today) Below is my acpi_handler.sh ======== #!/bin/sh # Default acpi script that takes an entry for all actions IFS=${IFS}/ set $@ case "$1" in button) case "$2" in # power) /sbin/init 0 ;; *) logger "ACPI action $2 is not defined" ;; esac ;; *) # logger "ACPI group $1 / action $2 is not defined" ;; esac ========