How to kill a Ubuntu process with pid?
I want to kill a particular process with pid, how can I do that?
2 Answers
4 years ago by Eleven
You can use the following command to kill a particular process with pid.
sudo kill -9 <pid>
ex:
sudo kill -9 15796
4 years ago by Karthik Divi
mov eax,1 ; The system call for exit (sys_exit)
mov ebx,0
░█████╗░███╗░░██╗████████╗██╗██████╗░░█████╗░███╗░░██╗
██╔══██╗████╗░██║╚══██╔══╝██║██╔══██╗██╔══██╗████╗░██║
███████║██╔██╗██║░░░██║░░░██║██████╦╝███████║██╔██╗██║
██╔══██║██║╚████║░░░██║░░░██║██╔══██╗██╔══██║██║╚████║
██║░░██║██║░╚███║░░░██║░░░██║██████╦╝██║░░██║██║░╚███║
╚═╝░░╚═╝╚═╝░░╚══╝░░░╚═╝░░░╚═╝╚═════╝░╚═╝░░╚═╝╚═╝░░╚══╝
sensitivity/storage/emulated/0/Android/data/com.dts.freefiremax/
1 year ago by antiban