I do not understand the difference between operating system and kernel. Can someone please explain it?
-
2Why isn't Windows 7 called a kernel? – miku Jul 23 '10 at 6:20
-
10think car/engine – Anycorn Jul 23 '10 at 6:32
-
5@Roque Santa Cruz: for the same reason computers are not called screens. – Álvaro González Jul 23 '10 at 6:33
-
Because it's an operating system. :) But seriously, a kernel is just a core process that owns everything handles the fundamentals. The win7 kernel is the thing that splits the processor time between all of your applications, manages the CPU and the memory, etc. – leoger Jul 23 '10 at 6:34
-
This is definitely an off-topic question. Not directly related to StackExchange. Incase you're still looking for the answer, see this thread (duplicate) hereā¦. it has every possible answer stackoverflow.com/questions/2013937/… @Moderators : Please close this !! – SashaZd Apr 29 '13 at 13:53
The kernel is part of the operating system and closer to the hardware it provides low level services like:
- device driver
- process management
- memory management
- system calls
An operating system also includes applications like the user interface (shell, gui, tools, and services).
The difference between an operating system and a kernel:
The kernel is a part of an operating system. The operating system is the software package that communicates directly to the hardware and our application. The kernel is the lowest level of the operating system. The kernel is the main part of the operating system and is responsible for translating the command into something that can be understood by the computer. The main functions of the kernel are:
- memory management
- network management
- device driver
- file management
- process management
Basically Kernel is the interface between hardware (devices which are available in Computer) and Application software (like MS Office,Visual studio,..etc).If I come to tell what is OS then the answer could be the same .Hence kernel is the part & core of OS .The very sensitive task of OS like memory management,I/O management ,Process management are being taken care by kernel only.
So the ultimate difference is ,
- Kernel is responsible for Hardware level interactions at some specific range.But the OS is like hardware level interaction with full scope of computer.
- Kernel triggers SystemCalls to intimate os that this resource is available at this point of time.OS is responsible to handle that system calls in order to utilize the resource.*