51.4k views
4 votes
What is the command to disable any Processes in linix??

User Delon
by
8.7k points

1 Answer

5 votes

Answer: killall[process_name] or kill[PID]

Step-by-step explanation:

Killall is a tool for disabling running processes on the system. It will disable all programs that matches the name mentioned.

kill disables processes based on process id numbers. it does not disable the process directly. The process recieves a signal where the process will follow instructions which it has to follow if it receives the signal.

User B Chen
by
7.5k points