answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How do you kill a process forcefully?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does forcefully mean?

forcefully means to push really hard


When something that moves quickly and forcefully?

Charge: to move forward quickly and forcefully


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 is a synonym for strongly?

Forcefully


How do you use the word forcefully in a sentence?

The window was stuck so the janitor had to forcefully open it using all his might.


Is forcefully an adverb?

Yes, the word forcefully is an adverb.Most adverbs, but not all of them, end in the suffix -ly.An example sentence is: "he forcefully kicked the door open".


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.


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.


What kind of sound will a guitar produce when you strum forcefully?

guitar makes a weird kinda staticy sound when I strum it forcefully


What is the adverb form of forceful?

The adverb of forceful is forcefully.An example sentence is: "we will forcefully kick the door down".


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.