Linux (1) 썸네일형 리스트형 [kill process] How to find the Process ID and Kill it Step 1 : Find the Process ID(PID) of the program There are several ways we can use for finding the PID of a process. # If we know the name of the process pidof # Returns all the running process on the system ps aux | grep -i "name of our desired program" ps aux command returns all the running process on the system. And the grep afterwards shows the line which matches with the program name. ps au.. 이전 1 다음