Disk Operating System

Size: px
Start display at page:

Download "Disk Operating System"

Transcription

1 Disk Operating System 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. It manages the files and data throughout the system. It serves as the interface between you, your program and the rest of the computer. DOS (Disk Operating System) was the first widely installed operating system for personal computers. The first personal computer version of DOS, called PC-DOS, was developed for IBM by Bill Gates and his new Microsoft Corporation. He retained the rights to market a Microsoft version, called MS-DOS. DOS was (and still is) a non-graphical line-oriented command- or menu-driven operating system. User interface of DOS is simple but not "friendly". Why You Need DOS: There are a variety of reasons why you need DOS DOS controls the flow of information between you and the computer. DOS allows you to store information on your computer. DOS allows you to retrieve information stored on your computer. DOS interprets and translates the software you have on your computer. DOS gives you access to all its function (i.e. saving, copying, and printing files). Its prompt to enter a command at command prompt like this C:\> Parts of DOS: DOS consists of: an input/output system, a command processor and Several utilities. Input/output System: The input/output system consists of two files and a ROM (Read Only Memory) chip. The two files are on your disks and are loaded into memory when the computer starts. They are normally hidden from users view and not available for changing. Command Processor: The command processor is a file you see on the disk. Once read into the computer's memory, it usually resides there. There are times when the command processor will be overwritten in memory by a program and have to be reloaded when the program stops executing. The command processor (COMMAND.COM on your disk) performs three tasks: It handles critical interrupts: COMMAND.COM takes care of all demands for attention by parts of the computer. The user typing the Control-Break program break command is an example of an interrupt It handles critical errors: COMMAND.COM takes care of problems. For example, if you leave the disk drive door open during a disk operation COMMAND.COM is responsible for the error message you will see. It performs end-of-program housekeeping:

2 COMMAND.COM takes care of making the computer's memory available for other programs and reloading parts of itself if the program wrote over them. COMMAND.COM also places the C:\> prompt on the screen and interprets any command(s) you might type. In short, the command processor tells the rest of DOS what to do. Utilities: The utilities are individual program files found on DOS disk. While part of DOS, these files are not needed often enough to make it necessary or practical to keep them in the computer's RAM all the time. FORMAT.COM, the program that formats blank disks, is an example of a DOS utility. Sometimes these utilities are called external commands (as opposed to internal commands which are included as part of the file COMMAND.COM and remain resident in memory at all times; e.g., DIR and COPY). Primitives of the DOS systems have two parts: BIOS (Basic Input/output System): These are the fundamental routines that control the keyboard, video display and other peripherals. The BIOS is comprised of a ROM on the computer's main circuit board and the file IO.SYS, one of the two hidden files on your disk. Operating System: This is the main file-handling system for the computer. Actually, two systems exist: one for disk-based files and one for non-disk peripheral devices. They are in hidden file MSDOS.SYS. MS-DOS uses IO.SYS and MSDOS.SYS. Starting a Computer: The process of starting a computer is called booting up. When you start a computer it literally picks itself up by its bootstraps. When the power is turn on the computer first checks its memory and some other components (the POST, or Power on Self-Test). After this, the left (or top) disk drive will begin to spin and the boot process will commence. ROM BIOS loads Track 0, Sector 0 of the disk. This sector contains a short program that can read the rest of the input/output system. (Note: every disk, bootable or not, contains a boot sector program. Default Drive: The default drive is the first disk drive on which DOS will look for a program if no drive specification is given with the filename. The default drive letter is part of the prompt (unless someone has changed the prompt to eliminate it). A:\> indicates that drive A (the left or top drive in a two-drive system) is the default drive. DOS supports many more than drives A through C. You change drives by typing the desired default drive followed by a colon at the prompt. Rules for Filenames: Like devices, disk files have to be identified so DOS can address them. These filenames have specific rules. The basic form of a filename is: Filename.txt

3 The first part of the name to the left of the period is called the root name. The root name can be from one to eight characters long and cannot be the same as a device name. The second part to the right of the period is the extension. It is optional and, if used, can be one to three characters long. The period is used between the root name and extension and must be present if there is an extension. The following are legal and illegal characters in a filename: Legal: A-Z 0-9 $#&@!()-{}'`_~ Illegal: <>\^+=?/[]";,* plus control characters and the space What makes up a DOS Command? DOS commands are issued at the prompt C:\>. Whatever you type after that prompt that is not in the COMMAND.COM standard library is assumed to be the name of a file on the default disk and DOS will search for it under one of three names (in the order listed). If you type C\:> FILENAME DOS will look for: FILENAME.COM or FILENAME.EXE or FILENAME.BAT The first is a command file (note the COM extension). The second is an execution file (EXE extension). And, the third is a batch file (a series of DOS commands in a text file). The first file found will be read into memory and the command processor will start the program running. DOS Commands: There are two types of DOS commands: 1. Internal Commands. 2. External commands. Internal Commands: MD Command: Purpose: To make/create directory. Syntax: MD (drive:) (path) Directory Name. CD Command: Purpose: To change Directory. Syntax: CD (drive:) (path) Directory Name. CD.. It comes one directory back. CD\ It comes to the Root Directory. Copy Con Command: Purpose: Creates file to the console. Syntax: Copy con (drive:) (path) File Name. Ren Command: Purpose: To rename the file with new name. Syntax: Ren (drive:) (path) old file Name new file name. Del Command: Purpose: To delete the file from the directory. Syntax: Del (drive:) (path) File Name (\p) \p prompts for the confirmation before deleting each file.

4 RD Command: Purpose: To delete/remove the directory Syntax: Del (drive:) (path) File Name (\p) Copy command: Purpose: To copy the file from one directory to another. Syntax: copy (drive:) (path) source File Name (drive:) (path) destination directory. [\v;\y;\-y] \v: verifies the source files copying correctly to the destination directory or not. \y: Suppresses prompting before copying each existing destination file. \-y: Causes prompting before copying each existing destination file. cls command: Purpose: To clear the screen. Syntax: cls Date command: Purpose: Displays current date [mm:dd:yy] Syntax: Date Time command: Purpose: Displays current time [hh:mm:ss] Syntax: time Type command: Purpose: Types the contents of file. Syntax: Type (drive:) (path) File Name Dir command: Purpose: Displays directories and files. Syntax: Dir (drive:) (path) Directory name DIR tells you what files are on the disk, how big they are, and when they were created. DIR also tells how many files total are in the list, how much space those take and what free space remains. \p : Displays the directory listing page wise. \w: Displays the directory listing in wide format. \s: Displays the directory listing with directories, subdirectories and files.\ \l: Displays the directory listing in lower case format. \b: Displays the directory listing in bare format. [O switch]: Sorts directory listing in specified order. \on: Sorts directory listing on file name. \oe: Sorts directory listing on extension. \os : Sorts directory listing on file size. \od: Sorts directory listing on date and time. \og : Displays group directories first. [A switch]: Displays files with given attributes: \ar : Displays files with read only attribute. \aa : Displays files with archive attribute. \as : Displays files with system attribute. \ah : Displays files with hidden attribute.

5 Attrib Command: Purpose: To attributes to files. Syntax: attrib (drive:) (path) filename (+)(-) [R,A,S,H] Attribute: Identification of file. +: used to set the attributes. - : used to clear the attributes. R: Read only attribute. A: Archive attribute. S: System attribute. H: Hidden Attribute. Prompt command: Purpose: To change the appearance of command prompt. Syntax: Prompt [string] $$: To display $ sign. $n: Current drive. $g: Greater than sign. $l: Less than sign. $p: current drive & path. $v: DOS version. $b: Piping Symbol. $d: Current date. $t: Current time. $- : Leaves one line blank. Find Command: Purpose: Finds string in specified file. Syntax: find string (drive:) (path) filename.[\i, \c, \n, \v] \i: Ignores the case of string. \c: Counts the number of times string found. \n: Gives the string with line number. \v: Gives the line not containing the string. Sort Command: Purpose: To sort the contents of file. Syntax: sort< (drive:) (path) filename> \r: sorts the contents in reverse \ descending order. \+n: sorts the contents according to the character in column n. External Commands: Xcopy Command: Purpose: copies directories, sub directories and files into the specified directory. Syntax: xcopy (drive:) (path) source directory (drive) (path) destination directory Format command: Purpose: To create tracks and sectors onto drive. Syntax: format (drive:) Diskcopy command: Purpose: Copies contents of one disk to another disk. Syntax: diskcopy (drive1) (drive2).

6 Diskcomp command: Purpose: Compares the contents of two identical diskettes. Syntax:Diskcomp(drive1) (drive2). How to work with Sub Directories: The DOS directory structure can be thought of as a tree, with the master disk directory being called the root and subdirectories thought of as branches. The root is the hard disk's master directory. Subdirectories may contain any number of entries (until the disk is full). Pathnames: Subdirectory in the path is separated by a backslash (\). The single backslash at the beginning of the pathname indicates the root. All pathnames must originate in either the current directory or root. Tree: All directory paths and their relationships are called a tree. If you don't remember the various subdirectories (and optionally the files in them) DOS offers you a chance to see them with the TREE command: TREE d:/f This command lists all paths from the root on the disk. If you use the /f option, you will also see all files in each subdirectory. (Only the filenames are shown, not their size or creation date/time.) For a permanent record, press Control-PrtScr before issuing the TREE command and again after. Your printer will record all text scrolling past on the screen. Ankit Gupta ankitg1689@gmail.com

Lecture 2 DOS & Windows file commands by: lecturer Raya N.Ismail

Lecture 2 DOS & Windows file commands by: lecturer Raya N.Ismail Lecture 2 DOS & Windows file commands by: lecturer Raya N.Ismail What is a File A group of organized data (records) which are assembled for one particular purpose and considered as one unit Stored in permanent

More information

False because it for ASCII not EBCDIC Dir /O:order ex. Dir/O:n False because it s a valid command True False because there are lines

False because it for ASCII not EBCDIC Dir /O:order ex. Dir/O:n False because it s a valid command True False because there are lines Instructions: This is an open book pretest. Answer all questions. There are three sections. There are a total of five question pages. The time limit is two hours. Section one: Select only one answer for

More information

IntroductIon to dos. 2.1 IntroductIon. 2.2 SettIng up dos

IntroductIon to dos. 2.1 IntroductIon. 2.2 SettIng up dos 2 IntroductIon to dos 2.1 IntroductIon DISK OPERATING SYSTEM (DOS) is a system software, which is closely associated with the computer hardware and provides the interface between the user and resources

More information

An Introduction to DOS

An Introduction to DOS An Introduction to DOS Contents 1. Introduction........................................................................................ 1 2. The file system......................................................................................

More information

DOS ELEMENTS. Abstract:

DOS ELEMENTS. Abstract: DOS ELEMENTS Smita Srivastava 1, Shweta Kurda 2, Priya Dubey 3 Information Technology Dronacharya College of Engineering, Gurgaon Abstract: This paper evaluates several hardware platforms and operating

More information

INDEX OF COMMANDS. ATTRIB [+r] [x:]{file} [-r] 92, 180. BACKUP x:[{file}] y:[/d][/m][/s] BASIC [[x:]{file}] BASICA [[x:]{file}] CD [[x:]\{name}]

INDEX OF COMMANDS. ATTRIB [+r] [x:]{file} [-r] 92, 180. BACKUP x:[{file}] y:[/d][/m][/s] BASIC [[x:]{file}] BASICA [[x:]{file}] CD [[x:]\{name}] INDEX OF COMMANDS In this index of commands, anything between square brackets indicates an alternative or a facultative addition to the command in question; "x:" and "y:" mean the designation of a drive;

More information

8.1 Software/Hardware Required: Core 2 duo/i3/i5/i7-64bit processor Operating System ubuntu/fedora 64bit OS Assembler: NASM Editor Used gedit

8.1 Software/Hardware Required: Core 2 duo/i3/i5/i7-64bit processor Operating System ubuntu/fedora 64bit OS Assembler: NASM Editor Used gedit Att (2) Perm(5) Oral(3) Total(10) Sign with Date Date: Assignment No.8 Aim: Write X86 Menu driven Assembly Language Program (ALP) to implement OS (DOS) commands TYPE, COPY and DELETE using file operations.

More information

OPERATING SYSTEM. Functions of Operating System:

OPERATING SYSTEM. Functions of Operating System: OPERATING SYSTEM Introduction: An operating system (commonly abbreviated to either OS or O/S) is an interface between hardware and user. OS is responsible for the management and coordination of activities

More information

Index of Names, Concepts and Symbols

Index of Names, Concepts and Symbols Index of Names, Concepts and Symbols Active drive - 17, 82 Active line - 136 Address - 41 Advanced Disk BASIC - 58 Alternate mode - 69 ALT key - 16, 68, 80, 100, 104 ANSI - 65, 99 ANSI.SYS - 99 Apple II

More information

C:\> command prompt DOS prompt cursor

C:\> command prompt DOS prompt cursor MS-DOS Basics The Command Prompt When you first turn on your computer, you will see some cryptic information flash by. MS-DOS displays this information to let you know how it is configuring your computer.

More information

What is software? Functional view. Functional view. System requirements of a software. Versions Free version: This is the free version

What is software? Functional view. Functional view. System requirements of a software. Versions Free version: This is the free version What is software? Session 04 Introduction to Software set of instructions that is written by human which runs on computer in order to do a useful task or tasks Types System Software Application Software

More information

Basic DOS Commands MCQ

Basic DOS Commands MCQ 1. An entire path name, consisting of several sub-directory names can contain upto A) 13 character B) 36 character C) 63 character D) 53 character 2. In which year the first operating system was developed

More information

Session 04 Introduction to Software

Session 04 Introduction to Software Session 04 Introduction to Software What is software? set of instructions that is written by human which runs on computer in order to do a useful task or tasks Types System Software Application Software

More information

Interrupt Services. Which Way is Best? Characteristics. Direct in, out. BIOS Average Average DOS Most Least

Interrupt Services. Which Way is Best? Characteristics. Direct in, out. BIOS Average Average DOS Most Least Interrupt Services Application Programs/OS Shell (command.com) int 10h, and others int 21h, and others (IO.SYS) DOS Services (msdos.sys) BIOS (EEPROM) Hardware (x86, Chipset and Peripherals) BIOS - Basic

More information

8086 Interrupts and Interrupt Responses:

8086 Interrupts and Interrupt Responses: UNIT-III PART -A INTERRUPTS AND PROGRAMMABLE INTERRUPT CONTROLLERS Contents at a glance: 8086 Interrupts and Interrupt Responses Introduction to DOS and BIOS interrupts 8259A Priority Interrupt Controller

More information

Internal Commands COPY and TYPE

Internal Commands COPY and TYPE Internal Commands COPY and TYPE Ch 5 1 Overview Will review file-naming rules. Ch 5 2 Overview Will learn some internal commands that can be used to manage and manipulate files. Ch 5 3 Overview The value

More information

DOS. 5/1/2006 Computer System Software CS 012 BE 7th Semester 2

DOS. 5/1/2006 Computer System Software CS 012 BE 7th Semester 2 DOS File System DOS The moment we turn the computer on, the computer loads a special program called the operating system into the computer s memory which provides an environment for us to run other programs.

More information

Advanced Batch Files. Ch 11 1

Advanced Batch Files. Ch 11 1 Advanced Batch Files Ch 11 1 Overview Quick review of batch file commands learned in earlier chapters. Ch 11 2 Overview Advanced features of these commands will be explained and used. Ch 11 3 Overview

More information

The Lecture's aim A preparation for the installation party: Prepare your computer for the installation Know what's going to happen Understand what's g

The Lecture's aim A preparation for the installation party: Prepare your computer for the installation Know what's going to happen Understand what's g Linux Installation Eli Billauer eli@billauer.co.il November 12, 2000 Linux Installation Slide 1 The Lecture's aim A preparation for the installation party: Prepare your computer for the installation Know

More information

5/8/2012. Creating and Changing Directories Chapter 7

5/8/2012. Creating and Changing Directories Chapter 7 Creating and Changing Directories Chapter 7 Types of files File systems concepts Using directories to create order. Managing files in directories. Using pathnames to manage files in directories. Managing

More information

1.Explain with the diagram IVT of 80X86. Ans-

1.Explain with the diagram IVT of 80X86. Ans- 1.Explain with the diagram IVT of 80X86 In 8086 1 kb from 00000 to 003ff are reserved for interrupt routine as shown in figure known as interrupt vector. It supports 256 interrupt procedures containing

More information

HELP Use the help command to list all the following supported commands:

HELP Use the help command to list all the following supported commands: Available commands within Windows Recovery Console The following commands are available within the Windows Recovery Console. The commands are not case-sensitive. HELP Use the help command to list all the

More information

Fundamental 2. Lec#04. Shugofa Hassani

Fundamental 2. Lec#04. Shugofa Hassani Fundamental 2 Lec#04 Shugofa Hassani Session Objective To distinguish between commercial and non commercial operating system To understand Ms.- DOS operating system and it s type. To practice basic DOS

More information

Description of the Windows XP Recovery Console for advanced users

Description of the Windows XP Recovery Console for advanced users Page 1 of 11 Article ID: 314058 - Last Review: September 22, 2008 - Revision: 5.4 Description of the Windows XP Recovery Console for advanced users System Tip This article applies to a different version

More information

Authorizing the TCP/IP protocol

Authorizing the TCP/IP protocol Authorizing the TCP/IP protocol If you purchased TCP/IP capability initially with the printer, the printer is shipped with the protocol already authorized. If you are adding TCP/IP capability to your printer,

More information

MLP (Multi-Link Programming) SOFTWARE

MLP (Multi-Link Programming) SOFTWARE FOR REVISIONS 1.10 AND ABOVE Doc-6001005 Rev - 3380 USER'S GUIDE TO MLP (Multi-Link Programming) SOFTWARE CHATSWORTH, CALIFORNIA Multi-Link Programming software makes programming a chain of Sentex Infinity

More information

The City School PECHS Junior Boys 1 st Term

The City School PECHS Junior Boys 1 st Term Q1) ill in the blanks with appropriate answers. Reinforcement Worksheet (Learning the Basic) a) he Operating System creates the proper environment for the user to interact with the computer. b) he main

More information

DOS INT 21h - DOS Function Codes

DOS INT 21h - DOS Function Codes Back To Home DOS INT 21h - DOS Function Codes The follow abridged list of DOS interrupts has been extracted from a large list compiled by Ralf Brown. These are available on any Simtel mirror (e.g. sunsite.anu.edu.au)

More information

Initial Bootloader. On power-up, when a computer is turned on, the following operations are performed:

Initial Bootloader. On power-up, when a computer is turned on, the following operations are performed: Initial Bootloader Introduction On power-up, when a computer is turned on, the following operations are performed: 1. The computer performs a power on self test (POST) to ensure that it meets the necessary

More information

COMPUTER SCIENCE SECTION A

COMPUTER SCIENCE SECTION A Total No. of Printed Pages 16 X/15/CSc 2 0 1 5 COMPUTER SCIENCE ( CANDIDATES WITH PRACTICAL/INTERNAL ASSESSMENT ) Full Marks : 80 Pass Marks : 24 ( CANDIDATES WITHOUT PRACTICAL/INTERNAL ASSESSMENT ) Full

More information

Disk Operating System

Disk Operating System In the name of Allah Islamic University of Gaza Faculty of Engineering Computer Engineering Department Introduction To Computer Lab Lab # 1 Disk Operating System El-masry 2013 Objective To be familiar

More information

5/20/2007. Touring Essential Programs

5/20/2007. Touring Essential Programs Touring Essential Programs Employing fundamental utilities. Managing input and output. Using special characters in the command-line. Managing user environment. Surveying elements of a functioning system.

More information

Hong Kong Polytechnic University Department of Electronic and Information Engineering. Experiment On DOS File system

Hong Kong Polytechnic University Department of Electronic and Information Engineering. Experiment On DOS File system DOSFS/CC/v1 Hong Kong Polytechnic University Department of Electronic and Information Engineering Experiment On DOS File system Objectives : To study how an OS manages its file system in a floppy disk.

More information

Loading 4A DOS or COMMAND DOS into a RAM device or Super Cart is quite easy.

Loading 4A DOS or COMMAND DOS into a RAM device or Super Cart is quite easy. This program is assumed to be ABANDONWARE This manual re-created, edited and enhanced in July of 2013 LOADING INSTRUCTIONS Loading 4A DOS or COMMAND DOS into a RAM device or Super Cart is quite easy. Choose

More information

Introduction to PC Operating Systems

Introduction to PC Operating Systems Introduction to PC Operating Systems Operating System Concepts 8th Edition Written by: Abraham Silberschatz, Peter Baer Galvin and Greg Gagne John Wiley & Sons, Inc. ISBN: 978-0-470-12872-5 Chapter 2 Operating-System

More information

Programming Fundamentals

Programming Fundamentals Programming Fundamentals Computers are really very dumb machines -- they only do what they are told to do. Most computers perform their operations on a very primitive level. The basic operations of a computer

More information

IT ESSENTIALS V. 4.1 Module 5 Fundamental Operating Systems

IT ESSENTIALS V. 4.1 Module 5 Fundamental Operating Systems IT ESSENTIALS V. 4.1 Module 5 Fundamental Operating Systems 5.0 Introduction 1. What controls almost all functions on a computer? The operating system 5.1 Explain the purpose of an operating system 2.

More information

SLOGGER' S ELECTRON EXPANSION 2.0. For the Acorn Electron with the ROMBOX PLUS or Acorn PLUS1 USER GUIDE

SLOGGER' S ELECTRON EXPANSION 2.0. For the Acorn Electron with the ROMBOX PLUS or Acorn PLUS1 USER GUIDE SLOGGER' S ELECTRON EXPANSION 2.0 For the Acorn Electron with the ROMBOX PLUS or Acorn PLUS1 USER GUIDE Copyright (C) 1987 Slogger Ltd 107 Richmond Road Gillingham Kent ME7 1LX All Rights Reserved ELECTRON

More information

Practical 7. Windows DOS Commands

Practical 7. Windows DOS Commands Practical 7 Windows DOS Commands Diskcomp: This command is clear from its name DISKCOMP i.e. comparison of disks. Compares the contents of a floppy disk in the source drive to the contents of a floppy

More information

- Remarks (1) and (2) about the FCB format in version 2 of MSX-DOS have been added.

- Remarks (1) and (2) about the FCB format in version 2 of MSX-DOS have been added. MSX2 TECHNICAL HANDBOOK ----------------------- Edited by: ASCII Systems Division Published by: ASCII Coprporation - JAPAN First edition: March 1987 Text files typed by: Nestor Soriano (Konami Man) - SPAIN

More information

Download from Powered By JbigDeaL

Download from  Powered By JbigDeaL 1. If a word is typed that is not in Word s dictionary, a wavy underline appears below the word. (A) red (B) green (C) blue (D) black 2. The button on the quick access Toolbar allows you to cancel your

More information

3 INSTALLING WINDOWS XP PROFESSIONAL

3 INSTALLING WINDOWS XP PROFESSIONAL INSTALLING WINDOWS XP PROFESSIONAL.1 Preparing for installation Objectives.1.1 Windows XP Professional Hardware Requirements.1.2 Hardware Compatibility List (HCL) check.1. Hard Disk Partition.1.4 Required

More information

Long Filename Specification

Long Filename Specification Long Filename Specification by vindaci fourth release First Release: November 18th, 1996 Last Update: January 6th, 1998 (Document readability update) Compatibility Long filename (here on forth referred

More information

Week 2. Exp 2 (a) (b): Introduction to LINUX OS, Installation of LINUX OS, Basic DOS commands

Week 2. Exp 2 (a) (b): Introduction to LINUX OS, Installation of LINUX OS, Basic DOS commands Week 2 Exp 2 (a) (b): Introduction to LINUX OS, Installation of LINUX OS, Basic DOS commands mkdir, cd, cls, del, copy, attrib, date, path, type, format, exit. Basic commands in LINUX - cat, ls, pwd,,

More information

This is Lab Worksheet 13 - not an Assignment. Boot Process and GRUB

This is Lab Worksheet 13 - not an Assignment. Boot Process and GRUB This is Lab Worksheet 13 - not an Assignment This Lab Worksheet contains some practical examples that will prepare you to complete your Assignments. You do not have to hand in this Lab Worksheet. Make

More information

Files

Files http://www.cs.fsu.edu/~langley/cop3353-2013-1/reveal.js-2013-02-11/02.html?print-pdf 02/11/2013 10:55 AM Files A normal "flat" file is a collection of information. It's usually stored somewhere reasonably

More information

PC Emulator. Installation Leaflet. Archimedes

PC Emulator. Installation Leaflet. Archimedes PC Emulator Installation Leaflet Archimedes Copyright Acorn Computers Limited 1988 Neither the whole nor any part of the information contained in, or the product described in, this guide may be adapted

More information

TULSIDAS CHELMELLA CHAITANYA REDDY

TULSIDAS CHELMELLA CHAITANYA REDDY IBM PC 5150 By TULSIDAS CHELMELLA CHAITANYA REDDY Spring 2017 1 CONTENTS 1. Introduction 3 2. System Hardware/Software 4 3. System Commands 5 4. Basic Programming 7 5. Installation of Floppy Drives 10

More information

There is a general need for long-term and shared data storage: Files meet these requirements The file manager or file system within the OS

There is a general need for long-term and shared data storage: Files meet these requirements The file manager or file system within the OS Why a file system? Why a file system There is a general need for long-term and shared data storage: need to store large amount of information persistent storage (outlives process and system reboots) concurrent

More information

COURSE OUTLINE. Division of Business and Technology NET 239. WAN Data Communications. Credits: 3 Class Hours: 2 Lab Hours: 2

COURSE OUTLINE. Division of Business and Technology NET 239. WAN Data Communications. Credits: 3 Class Hours: 2 Lab Hours: 2 COURSE OUTLINE Division of Business and Technology NET 239 WAN Data Communications Approved Catalog Description Covers the technology and terminology required to use routing and switching technologies

More information

h/w m/c Kernel shell Application s/w user

h/w m/c Kernel shell Application s/w user Structure of Unix h/w m/c Kernel shell Application s/w. user While working with unix, several layers of interaction occur b/w the computer h/w & the user. 1. Kernel : It is the first layer which runs on

More information

SPECTRUM DOS BY BOB COLIN

SPECTRUM DOS BY BOB COLIN SPECTRUM DOS 1.0 1984 BY BOB COLIN SPECTRUM DOS 1.0 IS SOLD AS-IS WITHOUT WARRENTY EXCEPT TO REPLACE DEFECTIVE MEDIA WITHIN 30 DAYS. ANY UNAUTHORIZED COPYING DISTRIBUTION OR SALE IS PROHIBITED _*_*_* S

More information

DEPARTMENT OF COMPUTER SCIENCE (UNDER PHYSICS DEPARTMENT) GOVT. V.Y.T. PG. AUTONOMOUS COLLEGE DURG. Syllabus and Marking Scheme for B.Com.

DEPARTMENT OF COMPUTER SCIENCE (UNDER PHYSICS DEPARTMENT) GOVT. V.Y.T. PG. AUTONOMOUS COLLEGE DURG. Syllabus and Marking Scheme for B.Com. DEPARTMENT OF COMPUTER SCIENCE (UNDER PHYSICS DEPARTMENT) GOVT. V.Y.T. PG. AUTONOMOUS COLLEGE DURG Approved syllabus for B.Com Computer Application by the members of Board of Studies For The syllabus with

More information

Computer Principles and Components 1

Computer Principles and Components 1 Computer Principles and Components 1 Course Map This module provides an overview of the hardware and software environment being used throughout the course. Introduction Computer Principles and Components

More information

Hard Disk Organization. Vocabulary

Hard Disk Organization. Vocabulary Hard Disk Organization Vocabulary Platter: one ceramic plate, covered with magnetizable film where the bits are actually stored. Both sides of a platter can be used. Increasing the number of platters is

More information

BATCH FILE PROGRAMMING

BATCH FILE PROGRAMMING BATCH FILE PROGRAMMING Chapter 1.- Introduction Chapter 2.- The DOS Command Structure Chapter 3.- The Batch Processor Chapter 4.- Special Batch Structures Chapter 5.- The Multiple Batch Files Chapter 6.-

More information

PC Emulator. Installation Leaflet. k1 rchimedes I

PC Emulator. Installation Leaflet. k1 rchimedes I .. v,,;i~...'.1......1-..','w, ' PC Emulator Installation Leaflet k1 rchimedes I Copyright Acom Computers Limited 1987 Neither the whole nor any part of the information contained in, or the product described

More information

File Transfers. Contents

File Transfers. Contents A File Transfers Contents Overview.................................................... A-3................................ A-3 General Software Download Rules............................ A-4 Using TFTP

More information

CHAPTER 2 BASIC OPERATING SYSTEM CONCEPT MANAGEMENT

CHAPTER 2 BASIC OPERATING SYSTEM CONCEPT MANAGEMENT CHAPTER 2 BASIC OPERATING SYSTEM CONCEPT MANAGEMENT Types of User Interface USER INTERFACE Command Interface Menu Interface Graphical User Interface Voice actuated Interface Web- form Interface User interface

More information

Lf1w1'eLC bliotfitl ~NS C.. /00/CAL VSTEMS. Maintenance Utility

Lf1w1'eLC bliotfitl ~NS C.. /00/CAL VSTEMS. Maintenance Utility Lf1w1'eLC bliotfitl Maintenance Utility /00/CAL VSTEMS ~NS C.. ç. TABLE OF CONTENTS LBMAINT - File Maintenance Utility... 1 Start up procedure... 2 Using LBMAINT... 3 The LBMAINT Scan menu... 5 Viewoption...

More information

OPERATING SYSTEMS & UTILITY PROGRAMS

OPERATING SYSTEMS & UTILITY PROGRAMS OPERATING SYSTEMS & UTILITY PROGRAMS System Software System software consists of the programs that control the operations of the computer and its devices. Functions that system software performs include:

More information

Ms Dos Commands List With Examples Ppt

Ms Dos Commands List With Examples Ppt Ms Dos Commands List With Examples Ppt MS-DOS Prompt The prompt in MS-DOS displays your current directory Example: copy a:/*.txt c:/ will copy all text files to drive c:/ Example 2: copy files in the current

More information

ACM SIGSOFT SOFTWARE ENGINEERING NOTES vol 11 no 2 Apt 1988 Page 22

ACM SIGSOFT SOFTWARE ENGINEERING NOTES vol 11 no 2 Apt 1988 Page 22 ACM SIGSOFT SOFTWARE ENGINEERING NOTES vol 11 no 2 Apt 1988 Page 22 Applying Direct Manipulation Concepts: Direct Manipulation Disk Operating System (DMDOS) Osamu Iseki and Ben Shneiderman Human-Computer

More information

4. Low level language with some high level features 9) What will happen if in a C program you assign a value to an array element whose subscript

4. Low level language with some high level features 9) What will happen if in a C program you assign a value to an array element whose subscript SET 9 1) Fastest component of a computer system is 1. Flash ROM 2. Cache memory 3. DDR RAM 4. CPU 2) Which tags are placed on animals, to track all of the animal speed 1. POS 2. RFID 3. PPS 4. GPS 3) user

More information

Hardware Course Syllabus

Hardware Course Syllabus Hardware Course Syllabus Days Topic Options covered Hours Day Computer concepts And History of computer Introduction Day 2 Generations of computers st, 2 nd,3 rd,4 th,5 th Generation its components Day

More information

Scripting Languages Course 1. Diana Trandabăț

Scripting Languages Course 1. Diana Trandabăț Scripting Languages Course 1 Diana Trandabăț Master in Computational Linguistics - 1 st year 2017-2018 Today s lecture Introduction to scripting languages What is a script? What is a scripting language

More information

Lab 10 CST8214 Ian! D. Allen Fall 2007

Lab 10 CST8214 Ian! D. Allen Fall 2007 Name: Date: Lab Section: Lab partner s name: Lab PC Number: Objectives: Understanding video memory and character mapping of CGA characters in ROM BIOS, using the DOS debug command. Writing simple assembly

More information

makes floppy bootable o next comes root directory file information ATTRIB command used to modify name

makes floppy bootable o next comes root directory file information ATTRIB command used to modify name File Systems File system o Designed for storing and managing files on disk media o Build logical system on top of physical disk organization Tasks o Partition and format disks to store and retrieve information

More information

DCA101 PC HARDWARE AND OPERATING SYSTEMS

DCA101 PC HARDWARE AND OPERATING SYSTEMS DCA101 PC HARDWARE AND OPERATING SYSTEMS (Answer all questions. Each question carries 1 mark) Choose the most correct answer from the given alternatives 1. Which of the following is a volatile memory?

More information

A1-R3: IT TOOLS & APPLICATIONS

A1-R3: IT TOOLS & APPLICATIONS A1-R3: IT TOOLS & APPLICATIONS NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions. 2. PART ONE is to be answered in the TEAR-OFF ANSWER

More information

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS A+ CERTIFICATION PREPARATION CST 2730

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS A+ CERTIFICATION PREPARATION CST 2730 PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS A+ CERTIFICATION PREPARATION CST 2730 Class Hours: 3.0 Credit Hours: 4.0 Laboratory Hours: 3.0 Date Revised: Spring 00 NOTE: This course is

More information

Introduction to Linux

Introduction to Linux Introduction to Linux The command-line interface A command-line interface (CLI) is a type of interface, that is, a way to interact with a computer. Window systems, punched cards or a bunch of dials, buttons

More information

emfile NAND Image Creator User & Reference Guide Document: UM02003 Software version: 1.03 Revision: 0 Date: November 16, 2016

emfile NAND Image Creator User & Reference Guide Document: UM02003 Software version: 1.03 Revision: 0 Date: November 16, 2016 emfile NAND Image Creator User & Reference Guide Document: UM02003 Software version: 1.03 Revision: 0 Date: November 16, 2016 A product of SEGGER Microcontroller GmbH & Co. KG www.segger.com 2 Disclaimer

More information

Washtenaw Community College Comprehensive Report. CST 118 Microsoft Command Line Fundamentals Effective Term: Winter 2017

Washtenaw Community College Comprehensive Report. CST 118 Microsoft Command Line Fundamentals Effective Term: Winter 2017 Washtenaw Community College Comprehensive Report CST 118 Microsoft Command Line Fundamentals Effective Term: Winter 2017 Course Cover Division: Business and Computer Technologies Department: Computer Instruction

More information

Processes. Shell Commands. a Command Line Interface accepts typed (textual) inputs and provides textual outputs. Synonyms:

Processes. Shell Commands. a Command Line Interface accepts typed (textual) inputs and provides textual outputs. Synonyms: Processes The Operating System, Shells, and Python Shell Commands a Command Line Interface accepts typed (textual) inputs and provides textual outputs. Synonyms: - Command prompt - Shell - CLI Shell commands

More information

Intel Architecture Segment:Offset Memory Addressing

Intel Architecture Segment:Offset Memory Addressing Name: Date: Lab Section: Lab partner s name: Lab PC Number: Objectives: Understanding video memory and character mapping of CGA characters in ROM BIOS, using the DOS debug command. Writing simple assembly-language

More information

HDOS SOFTWARE REFERENCE MANUAL HDOS DISK OPERATING SYSTEM VERSION 3.02 CHAPTER 5 PIP/PLUS

HDOS SOFTWARE REFERENCE MANUAL HDOS DISK OPERATING SYSTEM VERSION 3.02 CHAPTER 5 PIP/PLUS HDOS SOFTWARE REFERENCE MANUAL HDOS DISK OPERATING SYSTEM VERSION 3.02 CHAPTER 5 PIP/PLUS CHAPTER FIVE PIP/PLUS PAGE 5-i ============ ======== ======== HEATH DISK OPERATING SYSTEM SOFTWARE REFERENCE MANUAL

More information

Overview of Input/Output Mechanisms

Overview of Input/Output Mechanisms Overview of Input/Output Mechanisms Norman Matloff University of California, Davis \copyrigth{2001}, N. Matloff February 5, 2001 Contents 1 Introduction 1 2 Our Mythical Machine Architecture 2 3 I/O Ports

More information

ACCESSDATA SUPPLEMENTAL APPENDIX

ACCESSDATA SUPPLEMENTAL APPENDIX ACCESSDATA SUPPLEMENTAL APPENDIX Introduction to DOS and FAT OPERATING SYSTEMS The term operating system refers to the software that is required to manage a computer system and run applications on the

More information

TSM800 / TSM1330 Update Instructions

TSM800 / TSM1330 Update Instructions TSM800 / TSM1330 Update Instructions Contents Contents... 1 Automatic Updates... 1 Manual Update to the Latest Version of N2KView... 2 Manual Update of the Complete Operating System... 3 Automatic Updates

More information

COMPUTER SCIENCE SECTION A

COMPUTER SCIENCE SECTION A Total No. of Printed Pages 16 X/14/CSc 2 0 1 4 COMPUTER SCIENCE ( CANDIDATES WITH PRACTICAL/INTERNAL ASSESSMENT ) Full Marks : 80 Pass Marks : 24 ( CANDIDATES WITHOUT PRACTICAL/INTERNAL ASSESSMENT ) Full

More information

EE 390 Lab Manual, EE Department, KFUPM. Experiment #7. Introduction to Flight86 Microprocessor Trainer and Application Board

EE 390 Lab Manual, EE Department, KFUPM. Experiment #7. Introduction to Flight86 Microprocessor Trainer and Application Board Experiment #7 Introduction to Flight86 Microprocessor Trainer and Application Board 7.0 Objectives: The objective of this experiment is to introduce the Flight86 Microprocessor training kit and application

More information

C H A P T E R 1. Introduction to Computers and Programming

C H A P T E R 1. Introduction to Computers and Programming C H A P T E R 1 Introduction to Computers and Programming Topics Introduction Hardware and Software How Computers Store Data How a Program Works Using Python Computer Uses What do students use computers

More information

Lab - Common Windows CLI Commands

Lab - Common Windows CLI Commands Introduction In this lab, you will use CLI commands to manage files and folders in Windows. Recommended Equipment A computer running Windows Step 1: Access the Windows command prompt. a. Log on to a computer

More information

3.1 (a) The Main Features of Operating Systems

3.1 (a) The Main Features of Operating Systems Chapter 3.1 The Functions of Operating Systems 3.1 (a) The Main Features of Operating Systems The operating system (OS) must provide and manage hardware resources as well as provide an interface between

More information

Axxis Biometrics LLC. BioAxxis L113 Fingerprint Door Lock Programming Kit

Axxis Biometrics LLC. BioAxxis L113 Fingerprint Door Lock Programming Kit Axxis Biometrics LLC BioAxxis L113 Fingerprint Door Lock Programming Kit Revision 0.14 Dec 2005 Table of Contents 1. Introduction... 2 Product Overview... 2 Main Features... 2 Packing Lists... 3 2. Operation

More information

File Management. Ezio Bartocci.

File Management. Ezio Bartocci. File Management Ezio Bartocci ezio.bartocci@tuwien.ac.at Cyber-Physical Systems Group Institute for Computer Engineering Faculty of Informatics, TU Wien Motivation A process can only contain a limited

More information

Computer Hardware and System Software Concepts

Computer Hardware and System Software Concepts Computer Hardware and System Software Concepts Introduction to concepts of Operating System (Process & File Management) Welcome to this course on Computer Hardware and System Software Concepts 1 RoadMap

More information

Copyright (C) 1988 by WORDMARK Systems and the authors:

Copyright (C) 1988 by WORDMARK Systems and the authors: MYDOS Version 4 User Guide Revision 4.50 for Atari Home Computers Copyright (C) 1988 by WORDMARK Systems and the authors: Charles Marslett 2705 Pinewood Dr. Garland, TX 75042 CIS: 73317,3662 UseNet: CHASM@KILLER.DALLAS.TX.US

More information

Topics. Hardware and Software. Introduction. Main Memory. The CPU 9/21/2014. Introduction to Computers and Programming

Topics. Hardware and Software. Introduction. Main Memory. The CPU 9/21/2014. Introduction to Computers and Programming Topics C H A P T E R 1 Introduction to Computers and Programming Introduction Hardware and Software How Computers Store Data Using Python Introduction Computers can be programmed Designed to do any job

More information

ANNA UNIVERSITY OF TECHNOLOGY, COIMBATORE B.E.,/B.TECH. DEGREE EXAMINATIONS: NOV/DEC 2011

ANNA UNIVERSITY OF TECHNOLOGY, COIMBATORE B.E.,/B.TECH. DEGREE EXAMINATIONS: NOV/DEC 2011 ANNA UNIVERSITY OF TECHNOLOGY, COIMBATORE B.E.,/B.TECH. DEGREE EXAMINATIONS: NOV/DEC 2011 REGULATIONS: 2008 FIFTH SEMESTER -CSE 080230018 PC HARDWARE AND TROUBLESHOOTING PART A 1. What is meant by ISR?

More information

GV 2 Devicemanagement 2

GV 2 Devicemanagement 2 GV 2 Devicemanagement 2 getting started & usage 1/13 Index 1 General Remarks...3 2 Software...3 2.1 System Requirements...3 2.2 Installation...4 2.3 Un-Installation...5 3 User Interface...5 3.1 Menu Bar...6

More information

Shell Programming Overview

Shell Programming Overview Overview Shell programming is a way of taking several command line instructions that you would use in a Unix command prompt and incorporating them into one program. There are many versions of Unix. Some

More information

Chapter Two. Lesson A. Objectives. Exploring the UNIX File System and File Security. Understanding Files and Directories

Chapter Two. Lesson A. Objectives. Exploring the UNIX File System and File Security. Understanding Files and Directories Chapter Two Exploring the UNIX File System and File Security Lesson A Understanding Files and Directories 2 Objectives Discuss and explain the UNIX file system Define a UNIX file system partition Use the

More information

Initial Bootloader > Flash Drive. Warning. If not used carefully this process can be dangerous

Initial Bootloader > Flash Drive. Warning. If not used carefully this process can be dangerous Initial Bootloader > Flash Drive Warning If not used carefully this process can be dangerous Running the script used in this article with an incorrect argument can cause loss of data and potentially damage

More information

Boot Process in details for (X86) Computers

Boot Process in details for (X86) Computers Boot Process in details for (X86) Computers Hello,,, Let's discuss what happens between the time that you power up your PC and when the desktop appears. In fact we should know that the boot process differs

More information

4. A mail box 9) What is an embedded system? 1. A program that comes wrapped in a box 2. A program that is permanent part of a computer 3.

4. A mail box 9) What is an embedded system? 1. A program that comes wrapped in a box 2. A program that is permanent part of a computer 3. SET 6 1) A 32 bit word computer can access bytes at a time. 1. 4 2. 8 3. 16 4. 32 2) Access control based on a person s fingerprints is an example of 1. Biometric identification 2. Characteristic identification

More information

ICAU1128B: Operate a Personal Computer Student Handbook

ICAU1128B: Operate a Personal Computer Student Handbook ICA20105 Certificate II in Information Technology ICAU1128B: Operate a Personal Computer Student Handbook Modification History Competency Handbooks ICA20105: Cert II in Information Technology: ICAU1128B

More information

Programming in Module. Near Call

Programming in Module. Near Call Programming in Module Main: sub1: call sub1 sub ax,ax sub1 sub1 proc near sub ax,ax endp sub1 sub1 proc Far sub ax,ax endp Near Call sub1 sub1 Main: call sub1 sub1: sub ax,ax proc near sub ax,ax endp SP

More information

Lecture 13: I/O I/O. Interrupts. How?

Lecture 13: I/O I/O. Interrupts. How? Lecture 13: I/O I/O Interrupts MS-DOS Function Calls Input,Output, File I/O Video Keyboard Getting data into your program: define it in the data area use immediate operands Very limiting Most programs

More information