answersLogoWhite

0

In GUI the os which are preloaded for the application either by point & draw device or URL path are reffered as GUI system.whereas kernel are primarly stored in the contacted area of memory & not accessible for user application.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Performing Arts

What is the kernel in an operating system?

The kernel is the core part of the operating system. The kernel handles the machine side of things, while the GUI handles the user side of things.


Whether the operating system should include application such as web browser and mail program?

Nobody has exactly definied what an Operating System is. If it is the kernel only, then the answer is no. If it is the kernel, the common libraries, the GUI and the applications together, then the answer is yes.


What is the relationship between an operating system and a GUI?

The Operating System provides a consistent interface between the hardware and the applications programs. The GUI provides a consistent visual interface for some applications programs on top of the kernel and other parts of the Operating System. Microsoft claims it's part of the OS some people agree some people don't.


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.


When was the Linux 2.4 kernel released?

The 2.4 version of the Linux kernel was released in 2001.

Related Questions

Is the Linux GUI part of the kernel?

no


What are three components of windows 9xme?

The answer for this question is: Kernel, User, and GUI


What is the kernel in an operating system?

The kernel is the core part of the operating system. The kernel handles the machine side of things, while the GUI handles the user side of things.


What contains the Linux kernel system utilities GUI applications and installation routine?

C. Distribution :)


Whether the operating system should include application such as web browser and mail program?

Nobody has exactly definied what an Operating System is. If it is the kernel only, then the answer is no. If it is the kernel, the common libraries, the GUI and the applications together, then the answer is yes.


What do you call the program that surround the kernel of the operating system?

The program that surrounds the kernel of the operating system is called the "user space" or "user mode." It includes all the user-level applications and services that interact with the kernel, which operates in "kernel space" or "kernel mode." This separation helps ensure system stability and security by restricting user applications from directly accessing critical system resources managed by the kernel.


The difference between window 95982000 and xp?

Windows 95 and 98 is based on the Windows 4.x Kernel. Windows 2000 and XP is baed on the NT Kernel. XP sports a different GUI compared to 95982000, this is the main difference between windows 2000/98 and XP.


How old is GUI GUI?

Gui Gui is born on August 11 1989


When was Gui Gui born?

Gui Gui was born on 1989-08-11.


What are rings in Windows NT?

Windows NT uses protection mechanism called rings provides by the process to implement separation between the user mode and kernel mode.


What is the relationship between an operating system and a GUI?

The Operating System provides a consistent interface between the hardware and the applications programs. The GUI provides a consistent visual interface for some applications programs on top of the kernel and other parts of the Operating System. Microsoft claims it's part of the OS some people agree some people don't.


How does one make a C GUI application?

A Graphical User Interface (GUI) is, first and foremost, an event-driven program that runs on top of a command-line-driven operating system. Designing a GUI completely from scratch is not something to be undertaken lightly. The easiest way to create a GUI is to use a framework. Visual C++ provides the Microsoft Foundation Classes (MFC) framework which allows you to build Windows applications that conform to the Windows GUI, whilst giving you the freedom to design your own elements that can interact with the GUI, even if they bear no resemblance to the standard GUI elements. However, you cannot alter the Windows GUI itself (globally, that is) as it is an intrinsic component of the operating system. Although you can manipulate GUI elements in real-time, this places a huge strain upon resources and will greatly impede the overall performance. Under Linux you have far greater freedom because the command-line-driven kernel is completely separate from the GUI, thus you are free to design your own. This allows you to completely alter the GUI in any way you see fit. Again, a GUI framework is the easiest way to begin as it provides all the basic elements of a GUI, including message queues, memory management and multi-tasking -- all you really have to do is design the visual aspects of each element.