请稍侯

BusyBox 命令和工具的软件

13 January 2023
更多

前言

BusyBox 是一个集成了三百多个最常用Linux命令和工具的软件。BusyBox 包含了一些简单的工具,例如ls、cat和echo等等,还包含了一些更大、更复杂的工具,例grep、find、mount以及telnet。有些人将 BusyBox 称为 Linux 工具里的瑞士军刀。

下载地址

https://busybox.net/downloads/binaries/1.31.0-defconfig-multiarch-musl/

BusyBox命令 替换 原始命令

  1. 查看连接的串口ls -al /dev/tty*dmesg | grep ttyS* 新命令microcom -s 9600 /dev/ttymxc4
  2. 发送modebus命令 echo -e -n "\x01\x03\x00\x07\x00\x02\x75\xCA" > /dev/ttyS1
  3. 监听串口是否有回复消息 tail -f /dev/ttycat /dev/ttyS1 (cat会占用串口)

命令说明

zcip ```