RE: Ctrl-C doesn't work in the shell

2014-04-08 Thread Chan Kim
i...@vt.edu" Sent : 2014-04-01 23:13:49 ( +09:00 ) To : Chan Kim Cc : kernelnewbies@kernelnewbies.org Subject : Re: Ctrl-C doesn't work in the shell On Tue, 01 Apr 2014 05:57:05 -, Chan Kim said: > When I'm on a sheel on LCD using USB keyboard, all works fine (except

RE: Ctrl-C doesn't work in the shell

2014-04-08 Thread Chan Kim
13:49 ( +09:00 ) To : Chan Kim Cc : kernelnewbies@kernelnewbies.org Subject : Re: Ctrl-C doesn't work in the shell On Tue, 01 Apr 2014 05:57:05 -, Chan Kim said: > When I'm on a sheel on LCD using USB keyboard, all works fine (except another > important problem..) but Ctrl-C ke

RE: Ctrl-C doesn't work in the shell

2014-04-01 Thread Jeff Haran
From: kernelnewbies-bounces+jharan=bytemobile@kernelnewbies.org [mailto:kernelnewbies-bounces+jharan=bytemobile@kernelnewbies.org] On Behalf Of Chan Kim Sent: Monday, March 31, 2014 10:57 PM To: kernelnewbies@kernelnewbies.org Subject: Ctrl-C doesn't work in the shell Hi, When I'm on

Re: Ctrl-C doesn't work in the shell

2014-04-01 Thread Valdis . Kletnieks
On Tue, 01 Apr 2014 05:57:05 -, Chan Kim said: > When I'm on a sheel on LCD using USB keyboard, all works fine (except another > important problem..) but Ctrl-C key doesn't work. > When I press ctrl-C, '^C' is displayed on the screen (prompt line), but > doesn't have the effect of killing the

Re: Ctrl-C doesn't work in the shell

2014-04-01 Thread Paweł Tomaszewski
Hi Chan The situation is probably because a programmer implemented catching ctrl-c signal in a different way or maybe your process is waiting for some data. If it doesn't respone you can find the process id using 'top' or 'ps aux' command and send to it 'kill -9' signal. This is very brutal way of