Linux

Ctrl + c 不適用於 Linux 上的某些應用程序

  • December 12, 2010

這是一個非常奇怪的問題,但是在新系統(Fedora,Ubuntu)上 ctrl+c 對某些工具沒有影響:

如果我執行執行了將近一分鐘的 yum list 我不能中斷使用 ctrl+c 執行

$time yum list >/dev/null
^C^C^C^C^C^C^C^C^C

命令執行不會停止。

但是中斷查找是可能的。

$ time find / >/dev/null 2>&1
^C

real    0m0.741s
user    0m0.033s
sys     0m0.124s

我很好奇是什麼原因造成的。

我必須進行以下設置:

$ stty -a
speed 38400 baud; rows 36; columns 158; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; swtch = <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 -iutf8
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

我還找不到問題的描述,如果有人能提供一些啟示,我將不勝感激。

提前致謝。

一些應用程序SIGINT由於與其他庫的奇怪互動而陷入困境。您可以嘗試向他們發送一個SIGQUIT(通過Ctrl``\您的stty輸出給出的)。

一些應用程序就像SIGINTIgnacio 提到的那樣擷取,其他應用程序擷取所有鍵盤輸入。

如果 Cc 不起作用,您可以嘗試已經提到的 C-\,如果這不起作用,那麼只需嘗試後台程序:Cz。然後用kill -s SIGKILL <pid>

引用自:https://serverfault.com/questions/211548