Sun. Dec 22nd, 2024
linux

Here are some ways to force kill process in linux:

  • Use the pidof command to find the process ID of a running program or app
    pidof appname
  • To kill process in Linux with PID:
    kill -9 pid
  • kill process in Linux with application name
    kill -9 appname

By admin

Leave a Reply

Your email address will not be published. Required fields are marked *