5个Linux下的串口终端工具

1. cu 指令

$ cu -l /dev/device -s baud-rate-speed
$ cu -l /dev/ttyS0 -s 19200

退出则输入 ~.

2. screen 指令

$ screen /dev/device baud-rate
$ screen /dev/ttyS0 19200
$ screen /dev/ttySUSB0 19200,cs8

3. minicom 指令

$ minicom

4. putty 指令

$ sudo apt-get install putty

5. tip 指令

$ tip -19200 device
$ tip -19200 s0
$ tip -19200 ttys0

你可能感兴趣的:(linux)