SlideShare a Scribd company logo
1 of 96
Download to read offline
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
1
Operating System
(O.S.)
Mr.Anjan Mahanta
LCCT, International Studies Program
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
2
What is an Operating System?
• A program that acts as an intermediary between a
user of a computer and the computer hardware.
• Operating system goals:
– Execute user programs and make solving user problems
easier.
– Make the computer system convenient to use.
• Use the computer hardware in an efficient manner.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
3
Computer System Components
1. Hardware – provides basic computing resources (CPU,
memory, I/O devices).
2. Operating system – controls and coordinates the use of
the hardware among the various application programs for
the various users.
3. Applications programs – define the ways in which the
system resources are used to solve the computing
problems of the users (compilers, database systems, video
games, business programs).
4. Users (people, machines, other computers).
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
4
Abstract View of System Components
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
5
Memory Layout for a Simple Batch System
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
6
Multiprogrammed Batch Systems
Several jobs are kept in main memory at the same time, and the
CPU is multiplexed among them.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
7
What is a computer system?
• A computer system consists of hardware
and software that are combined to provide
a tool to solve specific problems.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
8
Hardware Resources
• Processor (CPU):
– The brain of the computer. Executes instructions.
• Memory:
– Stores program and data.
• A typical memory hierarchy:
– Registers, Cache, Main Memory(RAM), Magnetic disk,
Magnetic Tape.
• Input / Output (I/O) controllers:
– Transfers data to and from I/O devices.
• Disk device:
– Long term storage for data.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
9
Software Classification
• System Programs: Provides a general
environment in which programmers can
create specific applications.
– Operating System, Application Software’s
(compilers, editors, command interpreter, etc.)
• Application Programs: Intended to solve a
specific problem.
– Word processing, spread sheets, database
systems.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
10
Computer System
Application programs
System Programs
Hardware
Banking
System
Airline
reservation
Web
browser
Compilers
Editors Command
interpreter
Operating system
Machine language
Micro architecture
Physical devices
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
11
Kernel
• Kernel is the central component of operating
systems (OS)
• Its responsibilities include managing the
system's resources (the communication
between hardware and software components).
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
12
Computer-System Architecture
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
13
MS-DOS Execution
At System Start-up Running a Program
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
14
General Structure of Client-Server
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
15
Hardware and Software
Differences
• There are two parts to a computer system
– the hardware and
– the software
• Hardware refers to the physical components of
a computer. Examples monitor, keyboard and
mouse.
• Software represents the programs which
contain a set of instructions written to perform
a certain task on the computer.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
16
DOS
• Microsoft DOS was introduced in 1981
• DOS stands for Disk Operating System
• DOS controls the computer’s hardware and
provides an environment for programs to run
• This system program must always be present
when working with your computer
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
17
Why we need DOS?
• Because
1. DOS controls the flow of information
between you and the computer (translator).
2. DOS allows you to retrieve information
stored on your computer.
3. DOS gives you access to all its function (i.e.
saving, copying, and printing files).
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
18
What’s in DOS?
• The MS-DOS software consists of three files
– MS-DOS.SYS
– IO.SYS
– COMMAND.COM
• These are the system files necessary to
boot the computer system
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
19
Commands
• Internal Commands
– The internal commands are stored
in COMMAND.COM
– Examples: DIR, DEL, TIME
• External Commands
– The external commands are stored
in MS-DOS.SYS
– Examples: FORMAT, DISKCOPY
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
20
BIOS
• IO.SYS is the Basic Input Output
Services (BIOS) is a permanent program
stored in the memory.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
21
MS-DOS Commands
1. DATE
Purpose: To view the current system
date and change it, if required
Syntax: DATE
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
22
MS-DOS Commands
2. TIME
Purpose: To view the current system
time and change it, if required
Syntax: TIME
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
23
MS-DOS Commands
3. VER
Purpose: To display the MS-DOS
version number
Syntax: VER
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
24
MS-DOS Commands
4. CLS
Purpose: To clear the screen
Syntax: CLS
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
25
Files and Directories
• Files on a disk can be stored in a folder or
directories
• Each file and folder are assigned a name
• DOS provides a hierarchical structure of
directories and subdirectories
• The topmost directory is called as “root
directory”
• The root directory is denoted by a backslash ()
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
26
Hierarchical Directory Structure
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
27
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
28
Directory Commands
5. DIR
Purpose: Displays a list of a directory’s
files and subdirectories
Syntax: DIR [drive:][path][filename][/p][/w]
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
29
Examples
• Example 1
C> DIR
To display a directory listing for drive C
• Example 2
C> DIR D:
To display a directory listing for drive D
• Example 3
C> DIR hello.doc
To display the document whose file name is hello.doc
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
30
Examples
• Example 4
C> DIR /p
To display a directory listing one screen or one page
at a time
• Example 5
C> DIR /w
To display a directory listing in wide or window
format
• Example 6
C> DIR wordhello.doc
To display the document whose folder name is word
and the file name is hello.doc
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
31
Exercise
1. What command is used to display the date?
2. What command is used to clear the screen?
3. What command is used to display the current
directory?
4. What command is used to view a file whose
name is student.doc?
5. What command is used to view a file which is
in subdirectory LCCT and the file name is
student.doc?
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
32
Explain
• DIR /w
• DIR A:LCCT  Student  LVT.DOC
• DIR C:QBASIC.PPT
• DIR D:LCCT  INTER  COM  LVTII.DOC
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
33
MD / MKDIR
• Purpose: To create a directory
• Syntax: MD[drive:][path]
• Example 1
• MD LCCT
• This command will create a folder called LCCT
• Example 2
• MDLCCTINTER
• This command will create a folder inside the
LCCT folder
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
34
RMDIR / RD
• Purpose: Deletes a directory.
• ** Before you can delete a directory, you must delete
its files and subdirectories.
• Syntax: RD [drive:]path
• Example:
RD lcctinter
RD lcct
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
35
Directories (or Folders)
• Single-Level Directory System
– All files reside on root directory
Root Directory
Owners
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
36
Directories (or Folders)
• Two-Level Directory System
Root Directory
A CB User Directory
Files
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
37
Create the following Directories
LCCT
INTER
LVT I LVT II LVT III
COM
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
38
Create the following Directories
Language
Foreign
English Chinese Korean
BasicHigh Low
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
39
DEL
• Purpose: Deletes specified files
• Syntax: del [drive:][path]filename
• Example:
DEL hello.doc
DEL D: hello.doc
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
40
Delete Command - DEL
• Delete a single file
• Example
DEL student.doc
It will delete the file student
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
41
Delete Command - DEL
• Delete a group of file
• Example
DEL *.doc
It will delete all the files with the extension .doc
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
42
Delete Command - DEL
• Delete all files in a directory
• Example
DEL *.*
It will delete all the files in the current directory
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
43
FORMAT Command
• Format a Floppy disk
FORMAT A:
It will format the floppy disk in drive A
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
44
DISKCOPY
• To copy all the files from one floppy disk to another.
DISKCOPY A: A:
• When asked to put in the source disk, put in the diskette that
has the information you want to copy into drive A and press
enter.
• Wait a few seconds. When asked to insert a target disk, take
out the diskette from drive A and insert the blank floppy disk
and press enter.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
45
Copy File
• To copy a file from hard drive to floppy
disk
copy <insert filename here> a:
• Example
Copy student.doc g:
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
46
COPY
• The COPY command lets you copy files from
one directory to another.
• copy student.doc D:lcct
File name
Folder name
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
47
COPY
• To copy group of files
• copy *.doc D:lcct
All files with .doc extension
Folder name
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
48
COPY
• To copy all the files
• copy *. * D:lcct
All files
Folder name
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
49
CD / CHDIR
• Purpose: Displays the name of the current directory
or changes the current directory.
• Syntax: CD [drive:][path]
CD .. Goes to the top directory
CD is used to go to the root directory
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
50
Change Directory CD
• CD command is used to change the directory
from the current directory to another directory
• CD lcct
– It will change to the directory name lcct
• CD..
– It will move back to the directory.
• CD
– It will move back to the root directory
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
51
Lab Exercise
D:
LCCT
LVT IEP
Score.ppt
Test.xls
Student.doc
Teacher.doc
Student.doc
Hello.doc
Grade.xls
Os.ppt
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
52
Lab Exercise
1. Delete the file Teacher.doc
2. Delete all the .doc files from the IEP
folder
3. Delete all the files in the LVT folder
4. Delete all the files in the IEP folder
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
53
MOVE
• Allows you to move files or directories from
one folder to another, or from one drive to
another.
• Syntax
MOVE [/Y | /-Y] [drive:][path]filename1[,...] destination
• Example
move c:windowstemp*.* c:temp
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
54
IPConfig
• Ipconfig to display the network settings
currently assigned and given by a network.
• Syntax
ipconfig
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
55
ECHO
• Echo is used to repeat the text typed in
back to the screen
• Syntax
ECHO [message]
• Example
ECHO “Hello”
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
56
Defragmentation
• Defragmentation is a process that
reduces the amount of fragmentation in file
systems
• Syntax
Defrag drive:
• Example
Defrag D:
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
57
DOS Command Report
• Make a report on DOS Commands
• About 25 Commands
– Command Name
– Command Description
– Syntax
– Example
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
58
Windows Operating System
Windows XP
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
59
What is Windows?
• Microsoft Windows is a series of
software operating systems produced
by Microsoft.
• Microsoft first introduced an operating
environment named Windows in
November 1985
• The most recent client version of
Windows is Windows Vista
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
60
Creating a Shortcut
1) Click on the desktop with the right button of the mouse.
2) Select the option Shortcut on the New menu.
A dialog box will appear so that we can indicate the program
for which we want the shortcut created.
3) Click on Browse button, to find the program.
4) Select the desired unit and look for the file or folder you want.
5) After selecting the file or folder click on Ok.
6) Click Next.
7) Type a name for the Shortcut.
8) Click Finish.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
61
Changing the Date & Time
1 Double-click on the clock (on the right of the task bar).
2 Select the month, thus displaying the list of the months.
3 Select the year by placing the mouse on the year box and
scrolling accordingly.
4 With the left mouse button click on the day you want.
5 Place the mouse on the hour digits and change them
accordingly.
6 Do the same with the minutes and the seconds
7 Click OK
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
62
Adding or Removing a Task Bar
1 Place the mouse on the Windows task bar, but not on the
buttons.
2 Click on the task bar with the right mouse button.
3 Select the option Tool bar. A list of tool bars will appear.
4 Select the tool bar called Desktop.
5 Next to the task bar the new task bar will appear.
6 With this bar we can access the same things we access from the
desktop.
7 We have added a task bar.
8 To remove a task bar the process is similar.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
63
Creating and Deleting a Folder
1 Click on the Start button.
2 Display the All programs menu and click on Accessories.
3 Select Windows Explorer.
4 Place the pointer on My documents.
5 Select New from the menu File.
7 Select Folder.
8 Once the folder option has been selected you will see that on
the right window a new folder will appear that has the name
New Folder and that it is selected. Rename it My folder.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
64
Copying and Moving Folders
1 Click on Start.
2 Display the All programs menu and select the Accessories option.
3 Select the Windows Explorer.
4 Double-click on the folder My documents.
5 Select the folder My Music from the window to the right.
6 Click on the copy button or Edit --> Copy to Folder...
7 A new window will be displayed
8 Select unit C and click on New Folder.
9 Name it Temporary
10 Then double-click on it to select it.
11 Click OK
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
65
Organizing Folders
1 Click on Start.
2 Display the All programs menu and select Accesories
3 Select the Windows Explorer
4 Select the folder My documents.
5 Open the menu View and select Arrange Icons By.
6 Select the option organize by Size.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
66
System Tools
• Scandisk
• This tool is used to search errors in the
system´s units and to repair those
errors.
• When the computer is turned off in an abrupt
manner it is possible that some files may be
damage.
• To open Scandisk click on the icon My
Computer on the desktop
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
67
Scandisk
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
68
Scandisk
• Here you need to choose one of two options
available:
– Automatically fix file system errors
– Search for and attempt recovery of bad sectors.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
69
Disk defragmenter
• This tool is in charge of reorganizing the
information that is stored in the disk
• It can also fix errors on the units
• Windows incorporates this tool because the disk
becomes slow as we save new data and
delete old data
• The free spaces that are generated when
information from the disk is deleted influence
the size that files and programs use
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
70
Disk defragmenter
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
71
System Information
• This tool is in charge of showing information
regarding the system, such as
– the installed applications,
– the drivers,
– the processor
• To use this application from the Start menu,
click All Programs, Accessories, System tools
and then choose System Information.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
72
System Information
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
73
Restore System
• This tool is in charge of restoring the Windows
registry
• The system itself makes a copy of the registry every
once in a while
• So with this tool we can restore some of these
copies or we can generate a new copy of the current
registry when we are going to make important
changes to the configuration of the system
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
74
Restore System
• To run this application select, from the Start menu, All programs,
Accesories and System Tools and then choose System Restore.
• This window gives you the possibility to either Restore my computer to
an earlier time or Create a restore point.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
75
Restore System
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
76
Scheduled Tasks
• The Scheduled Tasks is used to schedule any
program to run at specific times.
• For example, schedule the use of the Disk Cleanup for
once a week
• To use this tool follow these steps:
• Click on Start.
• Display the menu All programs.
• Select the menu Accessories.
• Open the menu System Tools.
• Lastly select the option Scheduled Tasks.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
77
Adding or removing programs
• Windows has the Adding or removing programs tool,
because a program cannot be uninstalled by simply
deleting the files manually
• Click on the Start button and choose Control Panel
• Click on Add or Remove Programs option
• Click on Add New Programs.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
78
Configuring the Mouse
• Select the Control Panel from the Start menu.
• Double-click on the mouse icon and the Mouse
properties window will open
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
79
Configuring the Screen
• Click with the right mouse button somewhere that has no
icons on the desktop and select the option Properties
• The Display properties window will appear where we can
change the configuration parameters
• The background or wallpaper
• Click on the tab labeled Desktop and choose a new
background or wallpaper from the list
– Centered: the image will appear in the center of the screen with its
real size.
– Tile: the image will appear with as many images as necessary to
fill the screen.
– Stretch: the image will appear once taking up the entire screen.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
80
Configuring the Screen
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
81
The screensaver
• Sometimes the computer remains inactive a few minutes.
It is recommended to have a screensaver to avoid
having a still image on the screen too long because this
can damage the monitor.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
82
Searching
• Click Start
• Select on the menu Search.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
83
Searching
• The general search page will be displayed
as shown below.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
84
The Recycle Bin
• The Recycle Bin is nothing more than a space on the
hard disk reserved to store information that is deleted so
that in the event of deleting a file or folder by mistake it is
possible to retrieve it.
• To open the Recycle Bin place the cursor on Desktop
and double-click on the Recycle Bin icon.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
85
Restoring Files or Folders
• Restoring files or folders to their original location.
• To restore all of the elements from the Recycle Bin click
on the green arrow on the left side that says Restore all
items.
• If we only want to restore some of the elements:
– Select the elements to be restored by clicking on them.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
86
Deleting Files or Folders from the Recycle Bin
• Select the Elements to be deleted..
• Click on this will delete the selected
elements.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
87
Emptying the Recycle Bin
• Simply right click on the Recycle Bin icon
and a menu with the option Empty the
Recycle Bin.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
88
Installing a Printer
• Open the Start menu
• Select the option Printers and Faxes.
• If you do not have the option Printers and faxes on your
Start menu, you can also reach it through the Control
Panel, option Printers and other hardware.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
89
A screen like this one will appear
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
90
• Now, click on the icon Add a printer to launch
the assistant that will help you install a printer.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
91
The Print Manager
• To manage the print manager you need to open the
appropriate window in the following manner:
• Go to Printers and faxes from the Start menu.
• Click on the printer that you would like to manage.
• On the left hand panel select See what is printing
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
92
Sharing a Printer
• To do this click on Printer and select Properties.
• After selecting Sharing tab we will see two options; as
shown in this example, you can launch the Network Setup
Wizard, or you can share the printer without launching the
assistant taking into account the risks that this entails.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
93
Formatting a disk
• This is a useful tool if you want to delete all the content
of a disk and at the same time make sure it does not
have a virus.
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
94
Freeing disk space
• This tool is very usefull since it
allows us to empty the disk of
information that we do not use,
– like temporary files, Internet files,
even files in the Recycle Bin
• Select All programs, next select
Accessories and then System
tools. Finally, select Disk
cleanup
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
95
Character map
• The character map is useful to insert symbols that we
do not have on the keyboard
• Click Start and select All Programs, then select
Accesories and then System tools; finally select
Character Map
© Copyright Aj. Anjan Mahanta LCCT International Studies Program
96
Project Report
• Apple Mac OS
• LINUX
• IPhone
• Windows Mobile
• Blackberry

More Related Content

What's hot

Operating system overview concepts ppt
Operating system overview concepts pptOperating system overview concepts ppt
Operating system overview concepts pptRajendraPrasad Alladi
 
operating system
operating systemoperating system
operating systemKadianAman
 
Windows operating system
Windows operating systemWindows operating system
Windows operating systemLeah Gonzales
 
Types of operating system
Types of operating systemTypes of operating system
Types of operating systemMohammad Alam
 
Operating System DOS and Windows
Operating System DOS and WindowsOperating System DOS and Windows
Operating System DOS and WindowsYasirKhan357
 
Operating system and its types
Operating system and its types Operating system and its types
Operating system and its types vimal kumar arora
 
Introduction to ms windows
Introduction to ms windowsIntroduction to ms windows
Introduction to ms windowsSURYAKANTVERMA2
 
Disk operating system
Disk operating systemDisk operating system
Disk operating systemRaza Jaan
 
Types and components of computer system
Types and components of computer systemTypes and components of computer system
Types and components of computer systemmkhisalg
 
Software and its types
Software and its typesSoftware and its types
Software and its typesAhmad Hussain
 
Function of Operating system
Function of Operating systemFunction of Operating system
Function of Operating systemAmit Mehla
 
Introduction to Operating Systems
Introduction to Operating SystemsIntroduction to Operating Systems
Introduction to Operating SystemsMukesh Chinta
 
Operating system and its function
Operating system and its functionOperating system and its function
Operating system and its functionNikhi Jain
 

What's hot (20)

Operating system overview concepts ppt
Operating system overview concepts pptOperating system overview concepts ppt
Operating system overview concepts ppt
 
Computer software
Computer softwareComputer software
Computer software
 
operating system
operating systemoperating system
operating system
 
Windows operating system
Windows operating systemWindows operating system
Windows operating system
 
Operating System.pdf
Operating System.pdfOperating System.pdf
Operating System.pdf
 
Introduction to Operating Systems
Introduction to Operating SystemsIntroduction to Operating Systems
Introduction to Operating Systems
 
Types of operating system
Types of operating systemTypes of operating system
Types of operating system
 
Operating System DOS and Windows
Operating System DOS and WindowsOperating System DOS and Windows
Operating System DOS and Windows
 
Operating system and its types
Operating system and its types Operating system and its types
Operating system and its types
 
Introduction to ms windows
Introduction to ms windowsIntroduction to ms windows
Introduction to ms windows
 
Disk operating system
Disk operating systemDisk operating system
Disk operating system
 
Types and components of computer system
Types and components of computer systemTypes and components of computer system
Types and components of computer system
 
Os ppt
Os pptOs ppt
Os ppt
 
Software and its types
Software and its typesSoftware and its types
Software and its types
 
Function of Operating system
Function of Operating systemFunction of Operating system
Function of Operating system
 
Types Of Operating Systems
Types Of Operating SystemsTypes Of Operating Systems
Types Of Operating Systems
 
Ms DOS
Ms DOSMs DOS
Ms DOS
 
Disk operating system
Disk operating systemDisk operating system
Disk operating system
 
Introduction to Operating Systems
Introduction to Operating SystemsIntroduction to Operating Systems
Introduction to Operating Systems
 
Operating system and its function
Operating system and its functionOperating system and its function
Operating system and its function
 

Viewers also liked

13a.Computer Systems Extra Input
13a.Computer Systems   Extra Input13a.Computer Systems   Extra Input
13a.Computer Systems Extra InputNew Era University
 
Fy bms- I SEM it ppt
Fy bms- I SEM it pptFy bms- I SEM it ppt
Fy bms- I SEM it pptAkash Varaiya
 
15. Computer Systems Basic Software 1
15. Computer Systems   Basic Software 115. Computer Systems   Basic Software 1
15. Computer Systems Basic Software 1New Era University
 
Vtoc, Use Case, Activity Diagram
Vtoc, Use Case, Activity DiagramVtoc, Use Case, Activity Diagram
Vtoc, Use Case, Activity DiagramNew Era University
 
2 working with operating system
2 working with operating system2 working with operating system
2 working with operating systemMukesh Thakur
 

Viewers also liked (6)

Working with Operating System
Working with Operating SystemWorking with Operating System
Working with Operating System
 
13a.Computer Systems Extra Input
13a.Computer Systems   Extra Input13a.Computer Systems   Extra Input
13a.Computer Systems Extra Input
 
Fy bms- I SEM it ppt
Fy bms- I SEM it pptFy bms- I SEM it ppt
Fy bms- I SEM it ppt
 
15. Computer Systems Basic Software 1
15. Computer Systems   Basic Software 115. Computer Systems   Basic Software 1
15. Computer Systems Basic Software 1
 
Vtoc, Use Case, Activity Diagram
Vtoc, Use Case, Activity DiagramVtoc, Use Case, Activity Diagram
Vtoc, Use Case, Activity Diagram
 
2 working with operating system
2 working with operating system2 working with operating system
2 working with operating system
 

Similar to DOS Operating System

Comp 107 unit 4(operating systems)
Comp 107 unit 4(operating systems)Comp 107 unit 4(operating systems)
Comp 107 unit 4(operating systems)Mijanur Rahman
 
Operating System
Operating SystemOperating System
Operating SystemBini Menon
 
fdocuments.in_unit-2-foc.ppt
fdocuments.in_unit-2-foc.pptfdocuments.in_unit-2-foc.ppt
fdocuments.in_unit-2-foc.pptKrishanPalSingh39
 
JULY-DEC_2023_BSCBT_3_SEM_V9_BSCBT301_BSCBT301_Fundamentals_of_IT_Unit_2__Ppt...
JULY-DEC_2023_BSCBT_3_SEM_V9_BSCBT301_BSCBT301_Fundamentals_of_IT_Unit_2__Ppt...JULY-DEC_2023_BSCBT_3_SEM_V9_BSCBT301_BSCBT301_Fundamentals_of_IT_Unit_2__Ppt...
JULY-DEC_2023_BSCBT_3_SEM_V9_BSCBT301_BSCBT301_Fundamentals_of_IT_Unit_2__Ppt...naikayushkumar32
 
operating system structures
operating system structuresoperating system structures
operating system structuresHassan Siddiqui
 
Theoritical concept of operating system
Theoritical concept of operating systemTheoritical concept of operating system
Theoritical concept of operating systemchandkec
 
Trends and technologies in system softwares
Trends and technologies in system softwaresTrends and technologies in system softwares
Trends and technologies in system softwaresTech_MX
 
operatinndnd jdj jjrg-system-1(1) (1).pptx
operatinndnd jdj jjrg-system-1(1) (1).pptxoperatinndnd jdj jjrg-system-1(1) (1).pptx
operatinndnd jdj jjrg-system-1(1) (1).pptxkrishnajoshi70
 
Windows Operating System.pptx
Windows Operating System.pptxWindows Operating System.pptx
Windows Operating System.pptxOnyemaobiAmarachi
 
Operating system of computer
Operating system of computerOperating system of computer
Operating system of computerHamzaAbbas43
 
Introduction to Operating Systems - Mary Margarat
Introduction to Operating Systems - Mary MargaratIntroduction to Operating Systems - Mary Margarat
Introduction to Operating Systems - Mary MargaratMary Margarat
 
Operating system basics, Types of operating systems, Tasks, Process and Thre...
Operating system basics, Types of operating  systems, Tasks, Process and Thre...Operating system basics, Types of operating  systems, Tasks, Process and Thre...
Operating system basics, Types of operating systems, Tasks, Process and Thre...SattiBabu16
 
Chp 03 pti - (shared) up
Chp 03   pti - (shared) upChp 03   pti - (shared) up
Chp 03 pti - (shared) upYUSRA FERNANDO
 
Introduction to System Calls
Introduction to System CallsIntroduction to System Calls
Introduction to System CallsVandana Salve
 
Chp 03 - Software PTI - (Shared).pdf
Chp 03 - Software PTI - (Shared).pdfChp 03 - Software PTI - (Shared).pdf
Chp 03 - Software PTI - (Shared).pdfYUSRA FERNANDO
 

Similar to DOS Operating System (20)

Comp 107 unit 4(operating systems)
Comp 107 unit 4(operating systems)Comp 107 unit 4(operating systems)
Comp 107 unit 4(operating systems)
 
Operating System
Operating SystemOperating System
Operating System
 
fdocuments.in_unit-2-foc.ppt
fdocuments.in_unit-2-foc.pptfdocuments.in_unit-2-foc.ppt
fdocuments.in_unit-2-foc.ppt
 
Operating system
Operating systemOperating system
Operating system
 
JULY-DEC_2023_BSCBT_3_SEM_V9_BSCBT301_BSCBT301_Fundamentals_of_IT_Unit_2__Ppt...
JULY-DEC_2023_BSCBT_3_SEM_V9_BSCBT301_BSCBT301_Fundamentals_of_IT_Unit_2__Ppt...JULY-DEC_2023_BSCBT_3_SEM_V9_BSCBT301_BSCBT301_Fundamentals_of_IT_Unit_2__Ppt...
JULY-DEC_2023_BSCBT_3_SEM_V9_BSCBT301_BSCBT301_Fundamentals_of_IT_Unit_2__Ppt...
 
operating system structures
operating system structuresoperating system structures
operating system structures
 
Ms dos
Ms dosMs dos
Ms dos
 
Theoritical concept of operating system
Theoritical concept of operating systemTheoritical concept of operating system
Theoritical concept of operating system
 
Trends and technologies in system softwares
Trends and technologies in system softwaresTrends and technologies in system softwares
Trends and technologies in system softwares
 
systems_software
systems_softwaresystems_software
systems_software
 
operatinndnd jdj jjrg-system-1(1) (1).pptx
operatinndnd jdj jjrg-system-1(1) (1).pptxoperatinndnd jdj jjrg-system-1(1) (1).pptx
operatinndnd jdj jjrg-system-1(1) (1).pptx
 
CA_Module_3.pptx
CA_Module_3.pptxCA_Module_3.pptx
CA_Module_3.pptx
 
Windows Operating System.pptx
Windows Operating System.pptxWindows Operating System.pptx
Windows Operating System.pptx
 
Operating system of computer
Operating system of computerOperating system of computer
Operating system of computer
 
Introduction to Operating Systems - Mary Margarat
Introduction to Operating Systems - Mary MargaratIntroduction to Operating Systems - Mary Margarat
Introduction to Operating Systems - Mary Margarat
 
Unit 4
Unit  4Unit  4
Unit 4
 
Operating system basics, Types of operating systems, Tasks, Process and Thre...
Operating system basics, Types of operating  systems, Tasks, Process and Thre...Operating system basics, Types of operating  systems, Tasks, Process and Thre...
Operating system basics, Types of operating systems, Tasks, Process and Thre...
 
Chp 03 pti - (shared) up
Chp 03   pti - (shared) upChp 03   pti - (shared) up
Chp 03 pti - (shared) up
 
Introduction to System Calls
Introduction to System CallsIntroduction to System Calls
Introduction to System Calls
 
Chp 03 - Software PTI - (Shared).pdf
Chp 03 - Software PTI - (Shared).pdfChp 03 - Software PTI - (Shared).pdf
Chp 03 - Software PTI - (Shared).pdf
 

More from Anjan Mahanta

Paper 2 – Exam Revision Notes.pdf
Paper 2 – Exam Revision Notes.pdfPaper 2 – Exam Revision Notes.pdf
Paper 2 – Exam Revision Notes.pdfAnjan Mahanta
 
Project management part 2
Project management part 2Project management part 2
Project management part 2Anjan Mahanta
 
Project management part 1
Project management part 1Project management part 1
Project management part 1Anjan Mahanta
 
13.03 - Satellite communication systems
13.03 - Satellite communication systems13.03 - Satellite communication systems
13.03 - Satellite communication systemsAnjan Mahanta
 
13.02 Network Security
13.02   Network Security13.02   Network Security
13.02 Network SecurityAnjan Mahanta
 
13.01 Network Components
13.01   Network Components13.01   Network Components
13.01 Network ComponentsAnjan Mahanta
 
The role and impact of IT in society
The role and impact of IT in societyThe role and impact of IT in society
The role and impact of IT in societyAnjan Mahanta
 
Emerging Technologies
Emerging TechnologiesEmerging Technologies
Emerging TechnologiesAnjan Mahanta
 
Conditional statistical functions
Conditional statistical functionsConditional statistical functions
Conditional statistical functionsAnjan Mahanta
 
Spreadsheet if and nested if function
Spreadsheet if and nested if functionSpreadsheet if and nested if function
Spreadsheet if and nested if functionAnjan Mahanta
 
Spreadsheet lookup functions
Spreadsheet lookup functionsSpreadsheet lookup functions
Spreadsheet lookup functionsAnjan Mahanta
 
Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functionsAnjan Mahanta
 
Spreadsheet Date & Time Functions
Spreadsheet Date & Time FunctionsSpreadsheet Date & Time Functions
Spreadsheet Date & Time FunctionsAnjan Mahanta
 
Networks and the effects of using them
Networks and the effects of using themNetworks and the effects of using them
Networks and the effects of using themAnjan Mahanta
 
Storage devices and media
Storage devices and mediaStorage devices and media
Storage devices and mediaAnjan Mahanta
 
Chapter 4 E-Safety and Health & Safety
Chapter 4 E-Safety and Health & SafetyChapter 4 E-Safety and Health & Safety
Chapter 4 E-Safety and Health & SafetyAnjan Mahanta
 

More from Anjan Mahanta (20)

Paper 2 – Exam Revision Notes.pdf
Paper 2 – Exam Revision Notes.pdfPaper 2 – Exam Revision Notes.pdf
Paper 2 – Exam Revision Notes.pdf
 
Project management part 2
Project management part 2Project management part 2
Project management part 2
 
Project management part 1
Project management part 1Project management part 1
Project management part 1
 
13.03 - Satellite communication systems
13.03 - Satellite communication systems13.03 - Satellite communication systems
13.03 - Satellite communication systems
 
13.02 Network Security
13.02   Network Security13.02   Network Security
13.02 Network Security
 
13.01 Network Components
13.01   Network Components13.01   Network Components
13.01 Network Components
 
The role and impact of IT in society
The role and impact of IT in societyThe role and impact of IT in society
The role and impact of IT in society
 
Emerging Technologies
Emerging TechnologiesEmerging Technologies
Emerging Technologies
 
Conditional statistical functions
Conditional statistical functionsConditional statistical functions
Conditional statistical functions
 
Spreadsheet if and nested if function
Spreadsheet if and nested if functionSpreadsheet if and nested if function
Spreadsheet if and nested if function
 
Spreadsheet lookup functions
Spreadsheet lookup functionsSpreadsheet lookup functions
Spreadsheet lookup functions
 
Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functions
 
Spreadsheet Date & Time Functions
Spreadsheet Date & Time FunctionsSpreadsheet Date & Time Functions
Spreadsheet Date & Time Functions
 
Networks and the effects of using them
Networks and the effects of using themNetworks and the effects of using them
Networks and the effects of using them
 
Scratch Animation
Scratch AnimationScratch Animation
Scratch Animation
 
Expert Systems
Expert SystemsExpert Systems
Expert Systems
 
Storage devices and media
Storage devices and mediaStorage devices and media
Storage devices and media
 
Using Network
Using NetworkUsing Network
Using Network
 
The Digital Divide
The Digital DivideThe Digital Divide
The Digital Divide
 
Chapter 4 E-Safety and Health & Safety
Chapter 4 E-Safety and Health & SafetyChapter 4 E-Safety and Health & Safety
Chapter 4 E-Safety and Health & Safety
 

Recently uploaded

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 

Recently uploaded (20)

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 

DOS Operating System

  • 1. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 1 Operating System (O.S.) Mr.Anjan Mahanta LCCT, International Studies Program
  • 2. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 2 What is an Operating System? • A program that acts as an intermediary between a user of a computer and the computer hardware. • Operating system goals: – Execute user programs and make solving user problems easier. – Make the computer system convenient to use. • Use the computer hardware in an efficient manner.
  • 3. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 3 Computer System Components 1. Hardware – provides basic computing resources (CPU, memory, I/O devices). 2. Operating system – controls and coordinates the use of the hardware among the various application programs for the various users. 3. Applications programs – define the ways in which the system resources are used to solve the computing problems of the users (compilers, database systems, video games, business programs). 4. Users (people, machines, other computers).
  • 4. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 4 Abstract View of System Components
  • 5. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 5 Memory Layout for a Simple Batch System
  • 6. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 6 Multiprogrammed Batch Systems Several jobs are kept in main memory at the same time, and the CPU is multiplexed among them.
  • 7. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 7 What is a computer system? • A computer system consists of hardware and software that are combined to provide a tool to solve specific problems.
  • 8. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 8 Hardware Resources • Processor (CPU): – The brain of the computer. Executes instructions. • Memory: – Stores program and data. • A typical memory hierarchy: – Registers, Cache, Main Memory(RAM), Magnetic disk, Magnetic Tape. • Input / Output (I/O) controllers: – Transfers data to and from I/O devices. • Disk device: – Long term storage for data.
  • 9. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 9 Software Classification • System Programs: Provides a general environment in which programmers can create specific applications. – Operating System, Application Software’s (compilers, editors, command interpreter, etc.) • Application Programs: Intended to solve a specific problem. – Word processing, spread sheets, database systems.
  • 10. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 10 Computer System Application programs System Programs Hardware Banking System Airline reservation Web browser Compilers Editors Command interpreter Operating system Machine language Micro architecture Physical devices
  • 11. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 11 Kernel • Kernel is the central component of operating systems (OS) • Its responsibilities include managing the system's resources (the communication between hardware and software components).
  • 12. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 12 Computer-System Architecture
  • 13. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 13 MS-DOS Execution At System Start-up Running a Program
  • 14. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 14 General Structure of Client-Server
  • 15. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 15 Hardware and Software Differences • There are two parts to a computer system – the hardware and – the software • Hardware refers to the physical components of a computer. Examples monitor, keyboard and mouse. • Software represents the programs which contain a set of instructions written to perform a certain task on the computer.
  • 16. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 16 DOS • Microsoft DOS was introduced in 1981 • DOS stands for Disk Operating System • DOS controls the computer’s hardware and provides an environment for programs to run • This system program must always be present when working with your computer
  • 17. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 17 Why we need DOS? • Because 1. DOS controls the flow of information between you and the computer (translator). 2. DOS allows you to retrieve information stored on your computer. 3. DOS gives you access to all its function (i.e. saving, copying, and printing files).
  • 18. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 18 What’s in DOS? • The MS-DOS software consists of three files – MS-DOS.SYS – IO.SYS – COMMAND.COM • These are the system files necessary to boot the computer system
  • 19. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 19 Commands • Internal Commands – The internal commands are stored in COMMAND.COM – Examples: DIR, DEL, TIME • External Commands – The external commands are stored in MS-DOS.SYS – Examples: FORMAT, DISKCOPY
  • 20. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 20 BIOS • IO.SYS is the Basic Input Output Services (BIOS) is a permanent program stored in the memory.
  • 21. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 21 MS-DOS Commands 1. DATE Purpose: To view the current system date and change it, if required Syntax: DATE
  • 22. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 22 MS-DOS Commands 2. TIME Purpose: To view the current system time and change it, if required Syntax: TIME
  • 23. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 23 MS-DOS Commands 3. VER Purpose: To display the MS-DOS version number Syntax: VER
  • 24. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 24 MS-DOS Commands 4. CLS Purpose: To clear the screen Syntax: CLS
  • 25. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 25 Files and Directories • Files on a disk can be stored in a folder or directories • Each file and folder are assigned a name • DOS provides a hierarchical structure of directories and subdirectories • The topmost directory is called as “root directory” • The root directory is denoted by a backslash ()
  • 26. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 26 Hierarchical Directory Structure
  • 27. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 27
  • 28. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 28 Directory Commands 5. DIR Purpose: Displays a list of a directory’s files and subdirectories Syntax: DIR [drive:][path][filename][/p][/w]
  • 29. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 29 Examples • Example 1 C> DIR To display a directory listing for drive C • Example 2 C> DIR D: To display a directory listing for drive D • Example 3 C> DIR hello.doc To display the document whose file name is hello.doc
  • 30. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 30 Examples • Example 4 C> DIR /p To display a directory listing one screen or one page at a time • Example 5 C> DIR /w To display a directory listing in wide or window format • Example 6 C> DIR wordhello.doc To display the document whose folder name is word and the file name is hello.doc
  • 31. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 31 Exercise 1. What command is used to display the date? 2. What command is used to clear the screen? 3. What command is used to display the current directory? 4. What command is used to view a file whose name is student.doc? 5. What command is used to view a file which is in subdirectory LCCT and the file name is student.doc?
  • 32. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 32 Explain • DIR /w • DIR A:LCCT Student LVT.DOC • DIR C:QBASIC.PPT • DIR D:LCCT INTER COM LVTII.DOC
  • 33. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 33 MD / MKDIR • Purpose: To create a directory • Syntax: MD[drive:][path] • Example 1 • MD LCCT • This command will create a folder called LCCT • Example 2 • MDLCCTINTER • This command will create a folder inside the LCCT folder
  • 34. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 34 RMDIR / RD • Purpose: Deletes a directory. • ** Before you can delete a directory, you must delete its files and subdirectories. • Syntax: RD [drive:]path • Example: RD lcctinter RD lcct
  • 35. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 35 Directories (or Folders) • Single-Level Directory System – All files reside on root directory Root Directory Owners
  • 36. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 36 Directories (or Folders) • Two-Level Directory System Root Directory A CB User Directory Files
  • 37. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 37 Create the following Directories LCCT INTER LVT I LVT II LVT III COM
  • 38. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 38 Create the following Directories Language Foreign English Chinese Korean BasicHigh Low
  • 39. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 39 DEL • Purpose: Deletes specified files • Syntax: del [drive:][path]filename • Example: DEL hello.doc DEL D: hello.doc
  • 40. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 40 Delete Command - DEL • Delete a single file • Example DEL student.doc It will delete the file student
  • 41. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 41 Delete Command - DEL • Delete a group of file • Example DEL *.doc It will delete all the files with the extension .doc
  • 42. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 42 Delete Command - DEL • Delete all files in a directory • Example DEL *.* It will delete all the files in the current directory
  • 43. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 43 FORMAT Command • Format a Floppy disk FORMAT A: It will format the floppy disk in drive A
  • 44. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 44 DISKCOPY • To copy all the files from one floppy disk to another. DISKCOPY A: A: • When asked to put in the source disk, put in the diskette that has the information you want to copy into drive A and press enter. • Wait a few seconds. When asked to insert a target disk, take out the diskette from drive A and insert the blank floppy disk and press enter.
  • 45. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 45 Copy File • To copy a file from hard drive to floppy disk copy <insert filename here> a: • Example Copy student.doc g:
  • 46. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 46 COPY • The COPY command lets you copy files from one directory to another. • copy student.doc D:lcct File name Folder name
  • 47. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 47 COPY • To copy group of files • copy *.doc D:lcct All files with .doc extension Folder name
  • 48. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 48 COPY • To copy all the files • copy *. * D:lcct All files Folder name
  • 49. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 49 CD / CHDIR • Purpose: Displays the name of the current directory or changes the current directory. • Syntax: CD [drive:][path] CD .. Goes to the top directory CD is used to go to the root directory
  • 50. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 50 Change Directory CD • CD command is used to change the directory from the current directory to another directory • CD lcct – It will change to the directory name lcct • CD.. – It will move back to the directory. • CD – It will move back to the root directory
  • 51. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 51 Lab Exercise D: LCCT LVT IEP Score.ppt Test.xls Student.doc Teacher.doc Student.doc Hello.doc Grade.xls Os.ppt
  • 52. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 52 Lab Exercise 1. Delete the file Teacher.doc 2. Delete all the .doc files from the IEP folder 3. Delete all the files in the LVT folder 4. Delete all the files in the IEP folder
  • 53. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 53 MOVE • Allows you to move files or directories from one folder to another, or from one drive to another. • Syntax MOVE [/Y | /-Y] [drive:][path]filename1[,...] destination • Example move c:windowstemp*.* c:temp
  • 54. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 54 IPConfig • Ipconfig to display the network settings currently assigned and given by a network. • Syntax ipconfig
  • 55. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 55 ECHO • Echo is used to repeat the text typed in back to the screen • Syntax ECHO [message] • Example ECHO “Hello”
  • 56. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 56 Defragmentation • Defragmentation is a process that reduces the amount of fragmentation in file systems • Syntax Defrag drive: • Example Defrag D:
  • 57. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 57 DOS Command Report • Make a report on DOS Commands • About 25 Commands – Command Name – Command Description – Syntax – Example
  • 58. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 58 Windows Operating System Windows XP
  • 59. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 59 What is Windows? • Microsoft Windows is a series of software operating systems produced by Microsoft. • Microsoft first introduced an operating environment named Windows in November 1985 • The most recent client version of Windows is Windows Vista
  • 60. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 60 Creating a Shortcut 1) Click on the desktop with the right button of the mouse. 2) Select the option Shortcut on the New menu. A dialog box will appear so that we can indicate the program for which we want the shortcut created. 3) Click on Browse button, to find the program. 4) Select the desired unit and look for the file or folder you want. 5) After selecting the file or folder click on Ok. 6) Click Next. 7) Type a name for the Shortcut. 8) Click Finish.
  • 61. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 61 Changing the Date & Time 1 Double-click on the clock (on the right of the task bar). 2 Select the month, thus displaying the list of the months. 3 Select the year by placing the mouse on the year box and scrolling accordingly. 4 With the left mouse button click on the day you want. 5 Place the mouse on the hour digits and change them accordingly. 6 Do the same with the minutes and the seconds 7 Click OK
  • 62. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 62 Adding or Removing a Task Bar 1 Place the mouse on the Windows task bar, but not on the buttons. 2 Click on the task bar with the right mouse button. 3 Select the option Tool bar. A list of tool bars will appear. 4 Select the tool bar called Desktop. 5 Next to the task bar the new task bar will appear. 6 With this bar we can access the same things we access from the desktop. 7 We have added a task bar. 8 To remove a task bar the process is similar.
  • 63. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 63 Creating and Deleting a Folder 1 Click on the Start button. 2 Display the All programs menu and click on Accessories. 3 Select Windows Explorer. 4 Place the pointer on My documents. 5 Select New from the menu File. 7 Select Folder. 8 Once the folder option has been selected you will see that on the right window a new folder will appear that has the name New Folder and that it is selected. Rename it My folder.
  • 64. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 64 Copying and Moving Folders 1 Click on Start. 2 Display the All programs menu and select the Accessories option. 3 Select the Windows Explorer. 4 Double-click on the folder My documents. 5 Select the folder My Music from the window to the right. 6 Click on the copy button or Edit --> Copy to Folder... 7 A new window will be displayed 8 Select unit C and click on New Folder. 9 Name it Temporary 10 Then double-click on it to select it. 11 Click OK
  • 65. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 65 Organizing Folders 1 Click on Start. 2 Display the All programs menu and select Accesories 3 Select the Windows Explorer 4 Select the folder My documents. 5 Open the menu View and select Arrange Icons By. 6 Select the option organize by Size.
  • 66. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 66 System Tools • Scandisk • This tool is used to search errors in the system´s units and to repair those errors. • When the computer is turned off in an abrupt manner it is possible that some files may be damage. • To open Scandisk click on the icon My Computer on the desktop
  • 67. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 67 Scandisk
  • 68. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 68 Scandisk • Here you need to choose one of two options available: – Automatically fix file system errors – Search for and attempt recovery of bad sectors.
  • 69. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 69 Disk defragmenter • This tool is in charge of reorganizing the information that is stored in the disk • It can also fix errors on the units • Windows incorporates this tool because the disk becomes slow as we save new data and delete old data • The free spaces that are generated when information from the disk is deleted influence the size that files and programs use
  • 70. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 70 Disk defragmenter
  • 71. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 71 System Information • This tool is in charge of showing information regarding the system, such as – the installed applications, – the drivers, – the processor • To use this application from the Start menu, click All Programs, Accessories, System tools and then choose System Information.
  • 72. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 72 System Information
  • 73. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 73 Restore System • This tool is in charge of restoring the Windows registry • The system itself makes a copy of the registry every once in a while • So with this tool we can restore some of these copies or we can generate a new copy of the current registry when we are going to make important changes to the configuration of the system
  • 74. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 74 Restore System • To run this application select, from the Start menu, All programs, Accesories and System Tools and then choose System Restore. • This window gives you the possibility to either Restore my computer to an earlier time or Create a restore point.
  • 75. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 75 Restore System
  • 76. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 76 Scheduled Tasks • The Scheduled Tasks is used to schedule any program to run at specific times. • For example, schedule the use of the Disk Cleanup for once a week • To use this tool follow these steps: • Click on Start. • Display the menu All programs. • Select the menu Accessories. • Open the menu System Tools. • Lastly select the option Scheduled Tasks.
  • 77. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 77 Adding or removing programs • Windows has the Adding or removing programs tool, because a program cannot be uninstalled by simply deleting the files manually • Click on the Start button and choose Control Panel • Click on Add or Remove Programs option • Click on Add New Programs.
  • 78. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 78 Configuring the Mouse • Select the Control Panel from the Start menu. • Double-click on the mouse icon and the Mouse properties window will open
  • 79. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 79 Configuring the Screen • Click with the right mouse button somewhere that has no icons on the desktop and select the option Properties • The Display properties window will appear where we can change the configuration parameters • The background or wallpaper • Click on the tab labeled Desktop and choose a new background or wallpaper from the list – Centered: the image will appear in the center of the screen with its real size. – Tile: the image will appear with as many images as necessary to fill the screen. – Stretch: the image will appear once taking up the entire screen.
  • 80. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 80 Configuring the Screen
  • 81. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 81 The screensaver • Sometimes the computer remains inactive a few minutes. It is recommended to have a screensaver to avoid having a still image on the screen too long because this can damage the monitor.
  • 82. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 82 Searching • Click Start • Select on the menu Search.
  • 83. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 83 Searching • The general search page will be displayed as shown below.
  • 84. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 84 The Recycle Bin • The Recycle Bin is nothing more than a space on the hard disk reserved to store information that is deleted so that in the event of deleting a file or folder by mistake it is possible to retrieve it. • To open the Recycle Bin place the cursor on Desktop and double-click on the Recycle Bin icon.
  • 85. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 85 Restoring Files or Folders • Restoring files or folders to their original location. • To restore all of the elements from the Recycle Bin click on the green arrow on the left side that says Restore all items. • If we only want to restore some of the elements: – Select the elements to be restored by clicking on them.
  • 86. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 86 Deleting Files or Folders from the Recycle Bin • Select the Elements to be deleted.. • Click on this will delete the selected elements.
  • 87. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 87 Emptying the Recycle Bin • Simply right click on the Recycle Bin icon and a menu with the option Empty the Recycle Bin.
  • 88. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 88 Installing a Printer • Open the Start menu • Select the option Printers and Faxes. • If you do not have the option Printers and faxes on your Start menu, you can also reach it through the Control Panel, option Printers and other hardware.
  • 89. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 89 A screen like this one will appear
  • 90. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 90 • Now, click on the icon Add a printer to launch the assistant that will help you install a printer.
  • 91. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 91 The Print Manager • To manage the print manager you need to open the appropriate window in the following manner: • Go to Printers and faxes from the Start menu. • Click on the printer that you would like to manage. • On the left hand panel select See what is printing
  • 92. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 92 Sharing a Printer • To do this click on Printer and select Properties. • After selecting Sharing tab we will see two options; as shown in this example, you can launch the Network Setup Wizard, or you can share the printer without launching the assistant taking into account the risks that this entails.
  • 93. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 93 Formatting a disk • This is a useful tool if you want to delete all the content of a disk and at the same time make sure it does not have a virus.
  • 94. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 94 Freeing disk space • This tool is very usefull since it allows us to empty the disk of information that we do not use, – like temporary files, Internet files, even files in the Recycle Bin • Select All programs, next select Accessories and then System tools. Finally, select Disk cleanup
  • 95. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 95 Character map • The character map is useful to insert symbols that we do not have on the keyboard • Click Start and select All Programs, then select Accesories and then System tools; finally select Character Map
  • 96. © Copyright Aj. Anjan Mahanta LCCT International Studies Program 96 Project Report • Apple Mac OS • LINUX • IPhone • Windows Mobile • Blackberry