首先,我不知道这是应该留在 SO 还是去 SU:你告诉我。解决方案可能与编程有关。
我在嵌入式设备上执行 Linux 并使用 RS-232 @ 9600 波特与它通信。在 Windows 上使用 PuTTY 一切正常:我有一个 shell,可以键入和执行命令。
问题是:当我启动一个命令时,我不能 CTRL+C。例如,当 ping 某台机器时,ping 进入无限循环,我无法使用 CTRL+C 停止它。但是,在 Bash 提示符下,CTRL+C 起作用并转到下一行(因此被传输)。我还注意到^C
当我在运行命令时执行 CTRL+C 时会显示终端。通过 Telnet 连接时,CTRL+C 在任何地方都可以正常工作。
我尝试使用 PuTTY 的“特殊命令”中断,但它不起作用。我也尝试了不同的终端模拟器,同样的问题。
所以我猜这个问题与内核有关。有什么我可以调查的吗?
编辑:我正在运行 BusyBox v1.13.2。stty -a
(RS-232)的输出为:
speed 9600 baud; rows 24; columns 80;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>;
eol2 = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R; werase = ^W;
lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd cs8 hupcl -cstopb cread clocal -crtscts
-ignbrk brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon ixoff
-iuclc -ixany -imaxbel
opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt
echoctl echoke
stty -a
(Telnet)的输出是:
speed 38400 baud; rows 24; columns 80;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>;
eol2 = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R; werase = ^W;
lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd cs8 -hupcl -cstopb cread -clocal -crtscts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon -ixoff
-iuclc -ixany -imaxbel
opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab3 bs0 vt0 ff0
isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt
echoctl echoke
我只是注意到,如果我这样做ls -la /bin
,这是一个很长的命令,因为列表很长,我不能通过发出 CTRL+C 来中断,但我可以在按住键时。大约一秒钟后它会中断。但是,这不适用于 ping。
事实上,如果我这样做seq 1 1000
然后按 CTRL+C,它似乎在某个时候一次跳过了很多行:
93
94
95
^C6
897
898
899
同样的事情发生在ls -la /bin
:
lrwxrwxrwx 1 10042 2223 7 May 6 2012 dmesg -> busybox
lrwxrwxrwx 1 10042 2223 7 May 6 2012 dos2unix -> busybox
lrwxrwxrwx 1 10042 2223 7^C 7 May 6 2012 ipcrm -> busybox
lrwxrwxrwx 1 10042 2223 7 May 6 2012 ipcs -> busybox
lrwxrwxrwx 1 10042 2223 7 May 6 2012 iplink -> busybox