Answers for "how to kill a process with linux"

2

how to kill a process with linux

ps ux #list the running proccess
kill -9 <PID>
Posted by: Guest on January-23-2021
4

how to kill process

sudo kill <PID>
Posted by: Guest on December-27-2020
1

how to kill running process in linux

ps ux # list the running Process with PID
kill xxxx # hear xxxx is the process id
Posted by: Guest on December-06-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language