Processes

  • Search a process if its running or not

    • ps -ef | grep GIVE_YOUR__PROCESS_NAME

  • To check cup/memory usage by each process

  • kill

    • sudo kill -9 YOUR__PROCESS_ID

Exercise:

  • Write a command to find a specific running process and kill it.

Last updated