Search This Blog

Linux Operating System


6 comments:

  1. What are the differences between Real time operating system and normal operating system.?

    ReplyDelete
    Replies
    1. RTOS is liable to complete its works on time. In RTOS real time output is obtained based on the real time input. here real time means where events are depicted as occurring entirely within the span of and at the same rate as the depiction

      Delete
  2. What is difference between kill-6 and kill-9

    ReplyDelete
    Replies
    1. kill command is used to kill a process with different signals and that signal is decided by the signal options like- -1, -2, -9.

      kill -9 kills the zombie process which are already terminated but waiting for their parents to call

      kill -6 is used to kill a running process

      To see all kill signals you can type command
      $ kill -l <1..9>
      Ex :-
      $kill -l 9
      KILL

      Delete