Neeedddd Help! I can not stop the program in terminal

I can not stop the program in terminal by using ctrl+C, please somebody in Construct in Spain kill my terminal!!!

Hello @muratgozu ,

If you can’t stop your program with a regular Ctrl+C, you can try by using Ctrl+Z (which will actually put the program in the background). Another thing you can do is to look for your process in another shell using the command ps faux, then find the PID of your process and kill it with the command kill -9 PID (you can find more detailed instructions on how to do all this in the Linux Course, Unit 4).

Hope this helps,