answersLogoWhite

0


Best Answer

* Maintenance is generally easier. Patches can be tested in a separate instance, then swapped in to take over a production instance. * Rapid development time, new software can be tested without having to reboot the kernel. * More persistence in general, if one instance goes hay-wire, it is often possible to substitute it with an operational mirror

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

Monolithic kernel has simple design. Monolithic kernel is a single large processes running entirely in a single address space. It is a single static binariy file. All kernel services exist and execute in kernel address space. The kernel can invoke functions directly. The examples of monolithic kernel based OSs are Linux, Unix.

In Microkernels, the kernel is broken down into separate processes, known as servers. Some of the servers run in kernel space and some run in user-space. All servers are kept separate and run in different address spaces.The communication in microkernels is done via message passing. The servers communicate through IPC (Interprocess Communication). Servers invoke "services" from each other by sending messages. The separation has advantage that if one server fails other server can still work efficiently. The example of microkernel based OS are Mac OS X and Windows NT.


regards,
saurav ghosh

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

chutita site....

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between a monolithic kernel and a microkernel?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Performing Arts

What is Micro-kernel What are the benefits of Micro-kernel?

A microkernel performs only the most basic functions that apply to all computers. A benefit is that it's much simpler to extend the operating system.


Give an example of modular monolithic kernel?

Modular monolithic kernel example is Linux.don't need to confuse on monolithic and modular kernel. if we need to divide a single module of kernel in separate module to make handle easy we can do at the configure time of kernel but these kernel module having only in kernel space.Monolithic Kernel- single binary file- all drivers include in kernel itself.Modular kernel- Multiple files for kernel- Drivers can be loaded or unloaded into kernel using modprob command, see man page of lsmod, modprob etc when- Almost all drivers are build and linked against kernelactual mean of modular kernel in linux :some part of the system core will be located in independent files called modules that can be added to the system at run time. Depending on the content of those modules as1. only loading drivers if a device is actually found2. only load a filesystem if it gets actually requested3. only load the code for a specific (scheduling/security/whatever) policy when it should be evaluatedThose modules are still running in the kernel space and not in user space, so the kernel architecture is still monolithic.


What is loading of modules dynamically in monolithic kernel?

The loading of modules dynamically in monolithic kernel is done at the binary level as opposed to the architectural level. Dynamically loading modules is a more flexible way of handling the operating system image at runtime - as opposed to rebooting with a different operating system image.


What are the differences between various operating systems?

difference between layered and kernel base approach in OS structure


Give One difference between operating system software and applications software?

The OS makes calls to the system kernel (although sometimes the kernel is bundled with the OS). Applications make their calls to the OS, which then makes calls to the kernel.

Related questions

What is the Architecture of microkernel for solaris?

None. Solaris has a monolithic kernel.


Q Explain the difference between microkernel and macrokernel Give an example of microkernel?

Micro-Kernel: A micro-kernel is a minimal operating system that performs only the essential functions of an operating system. All other operating system functions are performed by system processes. Monolithic: A monolithic operating system is one where all operating system code is in a single executable image and all operating system code runs in system mode


What is a monolithic kernel and a microkernel?

The kernel is the heart of an operating system. The kernel internally contains many components, such as a memory manager, scheduler, numerous device drivers, a file system, and so on. When an operating system is being written, there are numerous design philosophies which the designers can adopt. At one extreme is the monolithic kernel, in which all of the components mentioned above, and many others, are all lumped into a single operating system file. At the other extreme is the microkernel, where only the bare minimum is put into the kernel file, and every thing else is put into separate programs, which the microkernel loads and runs at boot time. In practice, the design of most operating systems lies somewhere in between those two extremes, although they generally tend to be closer to a monolithic kernel than a microkernel. But, like everything else in life, the microkernel has its true believers. Other Answer: In monolithic operating system all services are provided in the operating system kernel itself. In my own understanding, monolithic operating system is one big program. Being 'one big program' all the services are associated with one another. This is prone to system crashes, because, if one particular function fails, the entire system will be brought to halt. In regards to resource management, it is difficult for the programmer to debug or implement the system. The only advantages of being monolithic are it deals with resource management rapidly. An example of a monolithic operating system will be the UNIX and MS-DOS. In microkernel operating system, processes are divided and stored in a different server. This key concept of the microkernel operating system is to keep the OS kernel small with basic and minimum process. Other services are stored in a different server. They communicate, via a communication channel


What is the architecture of microkernels developed in Linux?

Linux is a monolithic kernel. Some operating systems with a microkernel use Linux as a process for providing drivers, but this is irrelevant to mainstream Linux.


What is the difference between a purely layered architecture and microkernel architecture?

Micro kernel's have more fun. Where layered models tend to have drinking problems


What is macro kernel?

Monolithic Kernel is also known as "Macro Kernel" A monolithic kernel (Macro Kernel) is an operating system architecture where the entire operating system is working in the kernel space and alone as supervisor mode. The monolithic differs from other operating system architectures (such as the microkernel architecture) in that it defines alone a high-level virtual interface over computer hardware, with a set of primitives or system calls to implement all operating system services such as process management, concurrency, and memory management itself and one or more device drivers as modules.


What is the difference between unixkernal and linuxkernal?

Linux kernel is an operating system that is distributed by open source software. It is based on Unix, but has some differences, some of which are in adding and removing features of the kernel, kernel threading, application support, and monolithic kernel approach.


What type of kernel is Linux?

Monolithic


What type of kernel does Ubuntu use?

Ubuntu uses the Linux kernel, which is a monolithic kernel with loadable modules.


What kernel is Mac OS X based on?

Mac OS X is based on the XNU kernel, a microkernel Mach kernel with a BSD userland, which makes Mac OS X's kernel a hybrid-kernel.


What kinds of f Kernal programs are there?

A Kernel is classified into two main types: Monolithic Kernel Micro Kernel


Is the Windows NT based kernel better than the UNIX based monolithic kernel?

Yes.