Computer Science, asked by shikharagarwal3759, 4 months ago

Write the output of kill 9042018 in linux command

Answers

Answered by R15H4B
1

Answer:

kill command is basically used to kill a running task.

Explanation:

In your case the no. is not defined as a running task so, it cannot kill it, it will give output "No such process".

Answered by poojan
30

bash : kill : (9042018) - No such process is the output for the command $kill 9042018

Command:

~ $kill 9042018

Output:

bash : kill : (9042018) - No such process

Explanation:

  • As in the kill command provided, except an integer, you didn't use any other extensions, be it signal or list of signals.

  • So, this command is all about killing a process id i.e., pid 9042018.

  • $ kill pid is used to kill or destroy the process mentioned from the directory.

  • As soon as the process is killed, the ouput message shows you a message saying No such process exists, as the process has been deleted by then.

Learn more :

1) About Linus Torvalds + Unix.

brainly.in/question/11768011

2) What are the main securities in linux?

brainly.in/question/2581030

Similar questions