answersLogoWhite

0

How would you kill that process?

User Avatar

Anonymous

17y ago
Updated: 8/16/2019

Task Manager->processes, right click on the process, end process tree.

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

How would you use kill to cause a server process to reread its configuration files?

# kill -HUP pidwhere pid is the PID of the server process.


How would you use kill to log Max off the system?

First, find Max's login shell process. If, for example, it is process 12345, then kill -9 12345 would log Max out.


How would you use kill to log Max off the Linux system?

First, find Max's login shell process. If, for example, it is process 12345, then kill -9 12345 would log Max out.


How would one kill a phoenix in a way that the ashes would be destroyed or not form in the process?

Eat it.


Can a car kill a rhino?

It could, but the car would probably be "killed" in the process, as well.


How do you kill a process with a particular PID?

Use the 'kill' command with the appropriate signal. If you just want to kill the process without regard to doing so in a graceful manner you can use the 'kill' command with a signal that all programs cannot ignore, such as: kill -9 12345 or kill -KILL 12345 for process 12345. Be careful, however, because if the process is updating files or databases this would corrupt the database. It is better to start with a more gentle approach, which is to try the hangup signal, then the interrupt signal, the termination or stop signal, and then finally the 'KILL' signal. Of course, if you know what the process is doing and don't care what happens when it is stopped, just use the 'kill -9' or 'kill -KILL' sequence.


Can you kill init process in Unix systems?

If you are the super-user you could kill the init process, however, it isn't recommended since no new tasks would be spawned and the system is likely to crash shortly thereafter.


What would you name the link to an init script that would start the fictitious bigd demon early in the boot process?

Kill -9


What would you name the link to an init script that would kill the fictitious bigd daemon early in the boot process?

/etc/rc5.bigd.d


What process did Louis Pasteurs develop to kill germs?

Louis Pasteur devloped the process of pasteurization (named after himself) to try and kill germs.


How do you terminate a process in unix?

Generally any process may be terminated by sending the appropriate signal to it. The command to send signals to a process is called 'kill', and the various signals you can use are identified by 'kill -l' or by 'man kill'


What command deletes any process in Linux?

Processes aren't "deleted", they are "killed." The "kill" command, followed by the process ID number, should kill the process. Most distros also have a "killall" command, which will kill processes that have the name you specified.