22
Micro Op SYS (DOS) Chapters 1, 2, 3, 5, 6, 7

Micro Op SYS (DOS)

  • Upload
    karim

  • View
    44

  • Download
    2

Embed Size (px)

DESCRIPTION

Micro Op SYS (DOS). Chapters 1, 2, 3, 5, 6, 7. Hardware. Four Categories CPU (Central Processing Unit) Primary Storage (RAM) Input/Output Devices Keyboard Mouse Monitor Printer Secondary Storage (Drives). SOFTWARE. Two Categories System Software Operating Systems - PowerPoint PPT Presentation

Citation preview

Page 1: Micro Op SYS (DOS)

Micro Op SYS (DOS)

Chapters 1, 2, 3, 5, 6, 7

Page 2: Micro Op SYS (DOS)

2

Hardware

• Four Categories– CPU (Central Processing Unit)– Primary Storage (RAM)– Input/Output Devices

• Keyboard• Mouse• Monitor• Printer

– Secondary Storage (Drives)

Page 3: Micro Op SYS (DOS)

3

SOFTWARE

• Two Categories– System Software

• Operating Systems– DOS, Win3.x, Win9x, WinNT, Win2000, WinXp,

Win2003, Unix, Linux, MAC, OS2, Longhorn

• Utility Support Programs– Norton, Macafe, etc.

Page 4: Micro Op SYS (DOS)

4

SOFTWARE (cont)

– Application Software• Eight Categories

– Word Processing– Spreadsheet– Database Management– Communications– Mathematical Molding– Graphics– Games– Software Development Tools

Page 5: Micro Op SYS (DOS)

5

Drive Layout

• Fragmentation• Master Boot Record (MBR)• File Allocation Table (FAT)• Root Directory• Directory• Sub-Directory

Page 6: Micro Op SYS (DOS)

6

Page 7: Micro Op SYS (DOS)

7

DOS

• File Naming ConventionD:\Test\filename.ext[drive] [path] [filename] [extension]Filename → Max of 8 charactersExtension → Max of 3 characters

Example:A:\test\dos\project.doc

Page 8: Micro Op SYS (DOS)

8

Extensions• Executable files

– BAT – batch file– COM – program file <64KB– EXE – program file >64KB

• Text files– BAK – Backup text file– BAS – BASIC file– DAT – Data File– DBF – dBase file– DOC – Documentation file– HLP – Help file– INI – Initialization file– PRN – Printer file– SYS – System ASCII file– TXT – Text file

• Other files– DEF – Program setup file– FON – Font file– GIF – Graphics image file– OVL – Overlay file– PIF – Program information file– SYS – System binary file– TIF – TIFF graphic image file– WKI – Lotus 1-2-3 worksheet

file– WPG – WordPerfect graphic

file– XLS – Excel file

Page 9: Micro Op SYS (DOS)

9

Wildcards

• Two types– Asterisk (*)

• Representing a group of one or more characters– Question Mark (?)

• Representing only a single character

• Used a lot with the DIR command for narrower searching

Page 10: Micro Op SYS (DOS)

10

DOS Commands

• Internal– Frequently used and/or relatively small DOS

commands loaded into RAM when the system is booted

• External– Reside on the DOS disk– Must be copied into RAM each time they are

executed

Page 11: Micro Op SYS (DOS)

11

Some DOS Commands• DATE• TIME• HELP

– Help DATE– Date /?

• Format– Switches:

• /S – make bootable• /V – add a volume label• /Q – quick format• /F – floppy disk size• /U - unconditional

Page 12: Micro Op SYS (DOS)

12

Internal DOS Commands

• Frequently used and/or relatively small DOS commands loaded into RAM when the system is booted

Page 13: Micro Op SYS (DOS)

13

DOS Commands

• CLS

• REN

• VER

Page 14: Micro Op SYS (DOS)

14

DOS Commands (cont)

• COPY– copy filename.ext a:filename.ext– Can use wildcards

• Copy *.* a:*.*

• DEL– del filename.ext– Can use wildcards

• del *.*

Page 15: Micro Op SYS (DOS)

15

DOS Commands (cont)

• TYPE– Allows you to view the contains inside of a file

without having to open another program

Page 16: Micro Op SYS (DOS)

16

External DOS Commands

• Reside on the DOS disk• Must be copied into RAM each time they

are executed

Page 17: Micro Op SYS (DOS)

17

DOS Commands

• LABEL

• CHKDSK (after DOS6.2 SCANDISK)

• DISKCOPY– Must be the same size

• UNDELETE

Page 18: Micro Op SYS (DOS)

18

DOS Commands (cont)

• ATTRIB– attrib ±A ±H ±R ±S a:filename.ext– attrib a:*.*

• XCOPY– Similar to COPY but allows you to include

subdirectories– /s must be used to copy subdirectories

Page 19: Micro Op SYS (DOS)

19

DOS Disk Commands

• CD or CHDIR

• MD or MKDIR

• RD or RMDIR

Page 20: Micro Op SYS (DOS)

20

DOS Disk Commands (cont)

• TREE

• DELTREE

• PROMPT

Page 21: Micro Op SYS (DOS)

21

DOS Disk Commands (cont)

• MOVE

• PROMPT– $t – system time– $d – system date– $n – default drive– $g – the > character– $_ - “new line” command (to skip a line)– $p – default disk and current directory

Page 22: Micro Op SYS (DOS)

22

DOS Disk Commands (cont)

• PATH– Path c:\;c:\dos;a:\