Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Linux by (6.1k points)

There is a big linux program running on my machine, I want to terminate it but if I use the kill command program it will be exiting without saving the results. So kindly help me out with this issue. 

1 Answer

0 votes
by (11.7k points)

Try the following command on your Linux terminal:

kill -SIGINT processPIDHere

Actually, Ctrl C sends the SIGINT signal which is a signal for the interruption, and kill sends the SIGTERM signal which is a signal for termination by default unless you specify the signal to send.

Related questions

0 votes
1 answer
0 votes
1 answer
asked Dec 1, 2020 in Linux by blackindya (18.4k points)
0 votes
1 answer
asked Nov 28, 2020 in Linux by blackindya (18.4k points)
0 votes
1 answer

Browse Categories

...