Jump to content
XPEnology Community

rabside

Transition Member
  • Posts

    7
  • Joined

  • Last visited

Posts posted by rabside

  1. Hi,

    I own an HP N54L with DSM 5.0-4528 X64 (update 2) and nanoboot 5.0.3.2. WOL doesn't work, is it a nanoboot bug? When the system is up&running, Syno Assistant recognises the WOL feature active on NAS, but it can't power it up.

    Do you have any ideas?

     

    Thx a lot

  2. It's one known bug (nanoboot series).

     

    temp fix code:

     

    #!/bin/sh
    
    case $1 in
    start)
    
    if [ -f /var/packages/shutdown_script/DSShutdown.sh ]; then
     /var/packages/shutdown_script/DSShutdown.sh &
    fi
       ;;
    stop)
    
    if [ -f /var/tmp/shut.down ]; then
     rm /var/tmp/shut.down
    fi
    ifconfig eth0 down
    
       ;;
    *)
       echo "Usage: $0 [start|stop]"
       ;;
    esac

     

    named as S99ZZZ_Shutdown.sh or anything you like.

    and chmod +x, put it to /usr/syno/etc/rc.d

    reboot.

     

    How does it work? the file /var/packages/shutdown_script/DSShutdown.sh doesn't exist, so this script only puts down the ethernet interface.

×
×
  • Create New...