Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to kill a process #1

Open
sebpiq opened this issue Mar 26, 2014 · 0 comments
Open

How to kill a process #1

sebpiq opened this issue Mar 26, 2014 · 0 comments

Comments

@sebpiq
Copy link
Collaborator

sebpiq commented Mar 26, 2014

ctrl+C to interrupt the process if in the same terminal.

If the process is running in background, first find the pid (process id), by running :

ps aux | grep <some key work>

pid is the second column

then terminate the process with :

kill <pid>

If that didn't work, be less polite and force shutdown of the process with :

kill -9 <pid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant