我想在我的linux系统上收听某个设备。因此我使用截取。当我打电话给:
mv ttyO0 ttyO0-orig
然后
./interceptty -o ttyO0.out /dev/ttyO0-orig /dev/ttyO0 &
我得到错误:Couldn't openpty: No such file or directry
这是什么意思?文件ttyO0 orig可用。或者是其他地方的错误?

最佳答案

阅读manual page,它似乎在抱怨前面的装置,它不存在(因为你移动了它):

Usage: ./interceptty [-V] [-qvl] [-s back-set] [-o output-file]
                  [-p pty-dev] [-t tty-dev]
                  [-m [pty-owner,[pty-group,]]pty-mode]
                  [-u uid] [-g gid] [-/ chroot-dir]
                  back-device front-device

关于linux - 执行时出现拦截错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30146135/

10-11 00:37