Operating System

Operating System
6 min read

Asslamualaikum Readers,

Today we were talking about the operating system!

An operating system provides an environment for the execution of programs. It provides certain services to programs and to the users of those programs. The specific services offered differ from one operating system to another, but we can identify standard classes. These operating system services are provided for the convenience of the programmer, to make the programming task easier. One set of operating system services provides functions that are helpful to the user.

    • USER INTERFACE:- Almost all operating systems have a user interface (UI). This interface can take several forms. One is a command-line interface (CLI), which uses text commands and a method for entering them (say, a program to allow the entering and editing of commands). Another is a batch interface, in which commands and directives to control those commands are entered into files, and those files are executed. Most commonly, a graphical user interface (GUI) is used. Here, the interface is a window system with a pointing device to direct I/O, choose from menus, and make selections, and a keyboard to enter text. Some systems provide two or all three of these variations.
    • PROGRAM EXECUTION:- The system must be able to load a program into memory and run that program. The program must be able to end its execution, either normally or abnormally (indicating error).
    • I/O OPERATION:- A running program may require I/O, which may involve a file or an I/O device. For specific devices, special functions may be desired (such as recording to a CD or DVD drive or blanking a CRT screen). For efficiency and protection, users usually cannot control I/O devices directly. Therefore, the operating system must provide a means to do I/O.
    • File-System Manipulation:- The file system is of particular interest. Obviously, programs need to read and write files and directories. They also need to create and delete them by name, search for a given file, and list file information. Finally, some programs include permissions management to allow or deny access to files or directories based on file ownership.
    • Communications:- There are many circumstances in which one process needs to exchange information with another process. Such communication may occur between processes that are executing on the same computer or between processes that are executing on different computer systems tied together by a computer network. Communications may be implemented via shared memory or through message passing, in which packets of information are moved between processes by the operating system.
    • Error Detection:- The operating system needs to be constantly aware of possible errors. Errors may occur in the CPU and memory hardware (Such as a memory error or a power failure), in I/O devices ( Such as a parity error on tape, a connection failure on a network, or lack of paper in the printer), and in the user program (Such as an arithmetic overflow, an attempt to access an illegal memory location, or a too-great use of CPU time). For each type of error, the operating system should take the appropriate action to ensure correct and consistent computing. Debugging facilities can greatly enhance the user’s and programmer’s abilities to use the system efficiently.

Another set of operating-system functions exists not for helping the user but rather for ensuring the efficient operation of the system itself. Systems with multiple users can gain efficiency by sharing computer resources among the users.

    • Resource allocation:- When there are multiple users or multiple jobs running at the same time, resources must be allocated to each of them. Many different types of resources are managed by the operating system. Some (Such as CPU cycles, main memory, and file storage) may have special allocation codes, whereas others(such as I/O devices) may have much more general requests and release codes. For instance, in determining how best to use the CPU, the operating systems have CPU-scheduling routines that take into account the speed of the CPU, the jobs that must be executed, the number of registers available, and other factors. There may also be routines to allocate printers, modems, USB storage drives, and other peripheral devices.
    • Accounting:- We want to keep track of which users use how much and what kinds of computer resources. This record-keeping may be used for accounting (so that users can be billed) or simply for accumulating usage statistics. Usage statistics may be a valuable tool for researchers who wish to reconfigure the system to improve computing services.

Protection and Security:- The owners of information stored in a multiuser or networked computer system may want to control the use of that information. When several separate processes execute concurrently, it should not be possible for one process to interfere with the others or with the operating system itself. Protection involves ensuring that all access to system resources is controlled. Security of the system from outsiders is also important. Such security starts with requiring each user to authenticate himself or herself to the system, usually by means of a password, to gain access to system resources. It extends to defending external I/O devices, including modems and network adapters, from invalid access attempts and to recording all such connections for detection of breakend. If a system is to be protected and secure, precautions must be instituted throughout it. A chain is only as strong as its weakest link.

In case you have found a mistake in the text, please send a message to the author by selecting the mistake and pressing Ctrl-Enter.
Bright Education Hub 27
Welcome to the World of education.
You must be logged in to comment.

Sign In / Sign Up