Operating system

From Citizendium
Revision as of 13:58, 30 January 2007 by imported>Shanya Almafeta (Creating anew.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

An operating system is the software that is essential to the operation and normal use of a computer. The major components of an operating system are a kernal, drivers, user interface, and its core applications. These components are almost always bundled together.

Kernal

The heart of an operating system is its kernal. A kernal processes instructions, interacts with hardware, handles processes (usually multitasking), manages memory, and delivers output.

Some kernals are tied to one set of drivers or user interface, while some are interchangeable in one or both. The Microsoft Windows and Macintosh OS series have only one user interface per kernal, but can interchange drivers to work with different types of hardware. In comparison, the BSD kernel has no defined hardware nor user interface, and there are several different drivers and interfaces available for it.

Drivers

Drivers define methods for accessing hardware in terms a particular operating system can handle. Drivers are generally written by the manufacturer, which means the hardware manufacturer can decide what operating system or systems their products support.

Drivers generally must be loaded on bootup, which means that the computer can only change hardware while the computer is off. Plug and play hardware, however, can load the driver into memory as it is plugged in, as long as

User interface

A user interface allows for humans to interact with an operating system. If a system is not designed to be interacted with directly, the interface may be nonexistant, or perhaps only have a simple interface for debugging. In all other cases, a user interface. The two major criteria of a user interface are to provide access to core functions, and to organize it into as seamless and intuitive a system as possible.

A command line-driven user interface, such as MS-DOS, works by parsing text commands. Although they have largely phased out since the dawn of the fifth generation of computers, their low memory requirements make them useful for highly specialized purposes.

A graphic user interface (or GUI). Graphic user interfaces generally emulate the system used in the Microsoft Windows series, with control panels to handle access system functions, icons, mouse-controlled pointers, context menus on a right click, multiple windows for multiple windows, and some analogue for the Start button. Some interfaces (such as BumpTop), while graphical, use completely different elements to present control structures.

Much rarer are voice-driven interfaces. These interfaces are usually used alongside with a GUI, although some computers are beginning to use them, due to purpose (such as certain GPS navigation systems) or experimentation.

Core applications

The core applications of an operating system are the applications that cannot be used. Without these applications, there is no difference between a computer and a television set to an empty channel. In the first generations of computers, the application and the operating system were identical; a new problem or program required an entire new operating system. Beginning with the fourth generation of computers, however, applications and kernels became distinct.

In the fourth generation of computers, the core application was the interpreter, which took in BASIC code (or, rarely, code from another programming language, such as COBOL, Fortran, or Pascal) and parsed it for output. Although coding in assembly language or machine language was possible, some code was usually interpreted, as that made development easier. (For example, a Commodore 64 program might only put time-intensive subroutines into assembly, keeping the code interpreted for ease of development, only compiling the code at the end of production.)

In the fifth generation of computers, the core application has become the web browser. Most operating systems on the market today are including less and less software; instead, they are relying on access to the internet, as online content delivery makes it possible for a code fix to be created, tested, and released in a matter of hours or days, instead of weeks or months. Additionally, if a person has a functional web browser, no matter how stark or barebone it is, it is possible to purchase all sorts of other software, making the need to include any other form of software a cost-increasing "frill."

See also