Operating SystemsPDF
Operating SystemsPDF
ARNOLD J. PASTORES
What is an Operating System
An operating system is a program that controls the
execution of application programs and acts as an interface
between the user of a computer and the computer
hardware.
A more common definition is that the operating system is
the one program running at all times on the computer
(usually called the kernel), with all else being application
programs.
What is an Operating System
An operating system is concerned with the allocation of
resources and services, such as memory, processors,
devices, and information. The operating system
correspondingly includes programs to manage these
resources, such as a traffic controller, a scheduler, a memory
management module, I/O programs, and a file system.
Functions of Operating System
Security – The operating system uses password protection
to protect user data and similar other techniques. it also
prevents unauthorized access to programs and user data.
Control over system performance – Monitors overall
system health to help improve performance records the
response time between service requests and system
response to having a complete view of the system health.
Functions of Operating System
Job accounting – Operating system Keeps track of time
and resources used by various tasks and users, this
information can be used to track resource usage for a
particular user or group of users.
Error detecting aids – The operating system constantly
monitors the system to detect errors and avoid the
malfunctioning of a computer system.
Functions of Operating System
Coordination between other software and users –
Operating systems also coordinate and assign interpreters,
compilers, assemblers, and other software to the various
users of the computer systems.
Memory Management – The operating system manages
the Primary Memory or Main Memory.
Functions of Operating System
Processor Management – In a multi-programming
environment, the OS decides the order in which processes have
access to the processor, and how much processing time each
process has. This function of OS is called process scheduling.
Device Management – An OS manages device communication
via their respective drivers. Decides which process gets access to
a certain device and for how long. Allocates devices in an
effective and efficient way. Deallocates devices when they are no
longer required.
Functions of Operating System
File Management – A file system is organized into
directories for efficient or easy navigation and usage. OS
keeps track of where information is stored, user access
settings and status of every file, and more… These facilities
are collectively known as the file system.
Different Operating System
1. MS-DOS: MS-DOS which is short for Microsoft Disk
Operating System is a non-graphical command line operating
system developed for IBM compatible computers with x86
microprocessor.
It is a single user operating system meaning only one user
can operate at a time.
It does not support graphical interface hence mouse
cannot be used to operate it.
MS-DOS BASIC COMMANDS
1. CLS. This command erases all characters on the screen
and takes the cursor control to the first raw of the screen.
Syntax: CLS
2. DATE: Allows you to reset the system date to the
current date or obtain the current date from the system
clock.
Syntax: DATE (mm-dd-yy) or DATE (mm/dd/yy) or DATE
(mm.dd.yy)
MS-DOS BASIC COMMANDS
3. TIME. Displays the current time and allows you to reset
the time.
Syntax: TIME (hh:mm[:ss[xx]])
4. DIR: Use to display the contents of a directory (a
location for storing files in computer).
Syntax: DIR [/P] [/W] [/S]
MS-DOS BASIC COMMANDS