zoukankan      html  css  js  c++  java
  • 手动操作群晖蜂鸣器指示灯方法

    I'm interested in learning more about the echo commands that you run to /dev/ttyS1. For those of you who don't know what the echo commands are, they are simply command line entries that will allow you to modify the LED lights on the front of a DS/RS including playing a short beep or long beep of the unit.

    The commands themselves do not hold much value to the generic user but I'm interested in finding more information out about any extra commands that haven't been found yet. The most commonly used ones that you can also find in the Synology Wiki and the German forums are as follows:

     echo 1>/dev/ttyS1 # Immediate power off (not graceful) 
     echo 2>/dev/ttyS1 # Emit a short beep tone 
     echo 3>/dev/ttyS1 # Emit a long beep sound 
     echo 4>/dev/ttyS1 # Power LED on solid blue 
     echo 5>/dev/ttyS1 # Power LED flashing blue 
     echo 6>/dev/ttyS1 # Power LED off 
     echo 7>/dev/ttyS1 # Status LED off 
     echo 8>/dev/ttyS1 # Status LED on solid green 
     echo 9>/dev/ttyS1 # Status LED flashing green
     echo A>/dev/ttyS1 # USBCopy LED flashing green 
     echo @>/dev/ttyS1 # USBCopy LED on solid green 
     echo B>/dev/ttyS1 # USBCopy LED off 
     echo C>/dev/ttyS1 # Immediate reset (not graceful) 
     echo :>/dev/ttyS1 # Status LED on solid amber 
     echo ;>/dev/ttyS1 # Status LED flashing amber 
    

    In order to use these commands you'll need to connect via SSH (Secure SHell) using a CLI (Command Line Interface) program such as putty or SecureCRT. Once you have this then you'll need to log in at root level and then you can enter the commands. You can also do multiple echo commands at the same time.

    Example 1: Make the Status LED flash green
    echo 9> /dev/ttyS1
    Example 2: Have the unit emit a beep and make multiple LED lights flash
    echo ; 3 A 5> /dev/ttyS1
    Example 3: Have all LEDs switch back to solid
    echo 8 4 B> /dev/ttyS1
    I hope this has been useful for someone. I'm currently trying to discover more and their actions but if anyone else can expand further on this, please share.

    Reference:
    Echo Commands | Synology Community

  • 相关阅读:
    Linux程序的执行
    Linux图形操作与命令行
    Linux网络配置
    Zip文件中文乱码问题解决方法(MAC->Windows)
    我只是一直很努力
    Android抓包方法(三)之Win7笔记本Wifi热点+WireShark工具
    Android抓包方法(二)之Tcpdump命令+Wireshark
    Android抓包方法(一)之Fiddler代理
    Android反编译(二)之反编译XML资源文件
    Android反编译(一)之反编译JAVA源码
  • 原文地址:https://www.cnblogs.com/azureology/p/12443802.html
Copyright © 2011-2022 走看看