Linux中的TTY聆听
我试图找到一种简单的方法来监听 Linux 中与所需 tty 的交换。具有接口公开为 /dev/ttyAMA0 的硬件设备,系统上的一些驱动程序与其交互。我想将所有传输(或至少在一个方向)转储到 uart/文件等。我不想更改其中的某些内容,只需复制。有没有一种简单的方法可以做到这一点?
I try to find an easy way to listen to the exchange with the desired tty in Linux. A have hardware device whose interface is exposed as /dev/ttyAMA0 and some drivers on system interact with it. I want to dump all transfers (or at least in one direction) to uart/file etc. I don't want to change something in it, just duplicate. Is there a simple way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的做方法就是使用strace。在Strace日志中,我找到了所有必要的信息。
Easiest way to do what I want was just use strace. In strace log I found all necessary info.