Computer Science, asked by sonawanem1201, 9 months ago

what is the output Of kill 9042018​

Answers

Answered by Tulsi4890
0
  • You must be talking about Linux kill command. It used in Linux when an application or command line got stuck. The command syntax is  
  • kill [options] <pid> [...]
  • The output of Kill 9042018 depends on exactly what it is used for. There are some other syntax as well depending on the process.  
  • kill -s KILL [pid]
  • kill -s SIGKILL [pid]
  • kill -s 9 [pid]
Answered by poojan
1

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.

https://brainly.in/question/11768011

2) What are the main securities in linux?

https://brainly.in/question/2581030

Similar questions