how to kill a process in linux terminal code example

Example 1: linux kill process

ps -ef| grep <name or substring of the program> #Find the all program threads
kill - 9 <PID> # Kill it immediately (Second column from above command)

Example 2: ubuntu kill process

pidof slack 
9734 9718 9716 9708 9622 9619
sudo kill -9 process_id

pidof apt 
9734 9718 9716 9708 9622 9619
sudo kill -9 9734 9718 9716 9708 9622 9619

Example 3: how to kill a process with linux

ps ux #list the running proccess
kill -9 <PID>

Example 4: linux kill process

ps aux | grep chrome

Example 5: kill process from pid

kill SIGNAL PID

#Example
kill -9 3827

#See more information from : https://www.linux.com/training-tutorials/how-kill-process-command-line/

Example 6: how to kill process in linux

kill <processID>