Fall Lecture 2. Operating Systems: Configuration & Use CIS345. Disk Operating System (DOS) Mostafa Z. Ali.

Size: px
Start display at page:

Download "Fall Lecture 2. Operating Systems: Configuration & Use CIS345. Disk Operating System (DOS) Mostafa Z. Ali."

Transcription

1 Fall 2009 Lecture 2 Operating Systems: Configuration & Use CIS345 Disk Operating System (DOS) Mostafa Z. Ali mzali@just.edu.jo 1-1

2 Chapter 2 Disk Operating System (DOS) Finding DOS and Understanding its Strengths and Weaknesses Installing DOS How the FAT File System Works Working with the DOS Command Prompt Understanding the DOS Bootup Process Troubleshooting Common DOS Problems

3 Learning Objectives Measure the value, strengths, and weaknesses of DOS Install DOS Use the FAT file system Use DOS commands for file management and other tasks Describe the DOS bootup process and create startup disks Troubleshoot common DOS problems 2-3

4 Finding DOS and Understanding its Strengths and Weaknesses Versions of DOS CP/M was an important predecessor to DOS Many versions of DOS, several introduced by Microsoft (MS) MS created PC DOS for IBM Later licensed DOS as MS DOS to other manufacturers MS DOS 5.0 first version available as a separate product 2-4

5 Finding DOS and Understanding its Strengths and Weaknesses Versions of DOS (continued) PC DOS now works on Microsoft/Intel compatible computers Digital Research (of CP/M fame) introduced DR DOS in 1987 DR DOS 8.0 introduced in 2004 by DeviceLogics FreeDOS distributed without charge under GNU GPL license 2-5

6 Finding DOS and Understanding its Strengths and Weaknesses DOS Strengths DOS for backward compatibility with DOS apps DOS when you need a small OS DOS is more compact than Windows and hence useful for embedded systems or for portability DOS is popular as an operating system due to its ability to pack all startup files on a single floppy disk 2-6

7 Finding DOS and Understanding its Strengths and Weaknesses DOS Strengths (continued) The floppy disk is also known as the startup disk Startup disk accommodates additional files, such as drivers and utilities Startup disk can be used for booting up a computer and running special diagnostic programs 2-7

8 Finding DOS and Understanding its Strengths and Weaknesses DOS Weaknesses Processor mode limits Memory limits Multitasking limits Hard drive limits 2-8

9 Finding DOS and Understanding its Strengths and Weaknesses DOS Weaknesses (continued) Processor Mode Limits Only supports real mode of operation of Intel processors» Newer Intel processors start in the real mode, and newer OSs (Windows, Linux, UNIX) switch the processor from the real mode to the protected mode Memory Limits Intel processors in real mode use only 1 MB 640 KB of RAM (conventional memory) is workspace for the OS, applications and data 384 KB of addresses reserved for system BIOS and RAM and ROM on adapters 2-9

10 Finding DOS and Understanding its Strengths and Weaknesses DOS Weaknesses (continued) Multitasking Limits DOS is a single tasking OS Hard Drive Limits DOS only supports hard drives up to 7.8 GB DOS uses logical drives that are 2 GB or less and within the 7.8 GB total disk space limit A logical drive is a portion of the physical hard drive with a letter assigned to it 2-10

11 Installing DOS DOS Hardware Requirements The general DOS hardware requirements for MS DOS 6.22 and IBM PC DOS An IBM or compatible personal computer 6MB of free hard disk space for the DOS utilities 512KB of memory 2-11

12 Installing DOS Preparing for DOS Installation Assure that the computer is a complete system with all the necessary components Setup program partitions and formats the hard disk Partition: an area of a physical hard disk that contains one or more logical drives 2-12

13 Installing DOS Partitioning a Hard Disk in MS DOS Physical format is done at the factory Master Boot Record (MBR), the 1st sector on disk, contains the partition table Partitioning is the first step to prepare a hard disk Each partition needs a logical format within each logical drive Partitioning and formatting included in OS installation 2-13

14 Installing DOS Partitioning a Hard Disk in MS DOS (continued) FDISK the partitioning program of MS DOS Primary partition has only one logical drive 2GB is maximum primary partition size in MS DOS Extended partition contains one or more logical drives After partitioning, then format logical drives 2-14

15 Installing DOS Step by Step 2.01 Installing DOS on a Hard Disk Page

16 How the FAT File System Works FAT File System Components FAT Table File allocation table (FAT) DOS records disk space usage Cluster minimum space allocated to a file 2-16

17 How the FAT File System Works FAT File System Components (continued) FAT12, FAT16, and FAT32 FAT16 used on hard disks FAT32 available since Windows 95 OEM SR2 FAT12 used on floppy disks The number refers to the size of each entry in the FAT table. Length of entry limits the number of entries the FAT table can hold. 2-17

18 How the FAT File System Works FAT File System Components (continued) How Cluster Size Affects Partitions FAT16 file system limited to 65,525 clusters Maximum cluster size 32,768 bytes (32K) 65,525 x 32,768 = 2GB (maximum partition size supported by the FAT16 file system) 2-18

19 How the FAT File System Works FAT File System Components (continued) Root Directory and Other Directories The FAT and the root directory are the two primary components of the FAT file system DOS uses the FAT to record the location of a file on the disk A directory is a place where DOS stores information about files, including a reference to the FAT table Root directory is the top level directory 2-19

20 How the FAT File System Works FAT File System Components (continued) Root Directory and Other Directories (continued) Parent directory contains other directories Child directory (subdirectory) is within a parent Each directory entry contains the name of a file or directory, the time and date of its creation or modification, its size, attributes, and beginning cluster information 2-20

21 How the FAT File System Works Using a Directory and the FAT Table to find a File Directory is like a phone directory for DOS Finds file name and listing in the directory Reads the starting cluster number in directory Looks in the FAT table (like a map of city) for location on disk 2-21

22 How the FAT File System Works DOS file naming rules: A file name is up to eight characters, followed by a period, and an extension of up to three characters A file name and extension can include alphanumeric characters and a few special characters, but no spaces Use the wildcard characters asterisk (*) and question mark (?) to locate files and folders 2-22

23 How the FAT File System Works DOS File Types BAK, BAS, BAT, COM, DOS, EXE, SYS, and TXT are some common file extensions and file types recognized by DOS Executable Files COM, EXE, and BAT are the three types of files that can be executed by DOS 2-23

24 How the FAT File System Works Step by Step 2.02 Creating a Simple Batch File Page

25 How the FAT File System Works DOS File Attributes Determine the manner in which DOS handles files Read only Archive System Hidden Volume label Directory 2-25

26 How the FAT File System Works LABEL command Creates or changes a volume label (name) If a volume has a label, FORMAT requires the name before reformatting 2-26

27 How the FAT File System Works ATTRIB command Displays and modifies attributes Works on read only, archive, system, and hidden files Works in both MS DOS and Windows on FAT and NTFS 2-27

28 Working with the DOS Command Prompt Success at the DOS Prompt Success means correctly entering commands and getting desired results Important for working with DOS and other OSs 2-28

29 Working with the DOS Command Prompt Step by Step 2.03 Using the Online Help in DOS Page

30 Working with the DOS Command Prompt Success at the DOS Prompt (continued) What is the Correct Syntax? Syntax is a set of rules for correctly entering a specific command at the command line The HELP command can be used to find the syntax for a command COMMAND /? 2-30

31 Working with the DOS Command Prompt Success at the DOS Prompt (continued) How is a Command Interpreted? COMMAND.COM interprets the command entered at the prompt COMMAND.COM loads each command into the memory, and issues additional instructions to the command COMMAND.COM parses the command entry based on special delimiter characters 2-31

32 Working with the DOS Command Prompt How is a Program Found and Loaded? COMMAND.COM loads the command named at the beginning of the command line Must find the actual program code First checks its own list of internal commands Then looks for an external command in the current directory, and then in a list called the search path 2-32

33 Working with the DOS Command Prompt Learning to Manage Files and Directories File management in DOS is centered on the abilities and limits of the FAT file system It is essential to design a directory structure to save and organize files 2-33

34 Working with the DOS Command Prompt Learning to Manage Files and Directories (continued) Designing a Directory Structure for File Management DOS directory/folder structure is hierarchical Drive Directory File Name TREE command can be used to view the entire directory structure Store data in a separate directory from applications 2-34

35 Working with the DOS Command Prompt Learning to Manage Files and Directories (continued) Creating and Removing Directories MD (Make Directory) will create a directory CD or CHDIR (Change Directory) allows movement between directories RD (Remove Directory) deletes an empty directory 2-35

36 Working with the DOS Command Prompt Learning to Manage Files and Directories (continued) Use File Management Commands DOS commands are divided into internal commands and external commands Internal commands are loaded into the memory along with DOS 2-36

37 Working with the DOS Command Prompt Learning to Manage Files and Directories (continued) Use File management commands (continued): DIR (Directory), MD, CD, CLS (CLear Screen), COPY, REN (REName), RD, and TYPE are some of the internal commands XCOPY, DISKCOPY, and DELTREE are often used external commands 2-37

38 Working with the DOS Command Prompt DOS Command DIR DIR /? DIR /P CD.. CLS VER XCOPY COPY DELTREE Function Displays a list of files and folders. Lists the available syntax for the DIR command. List data one page at a time. Moves to the parent directory from the present directory. Clears the screen. Displays the MS-DOS version. Used to copy files and entire directories. Used to copy only files. Used to delete an entire directory and its contents. DOS commands and their functionality 2-38

39 Working with the DOS Command Prompt Step by Step 2.04 Managing Files and Directories Page

40 Understanding the DOS Boot Up Process and Startup Disks Why You Should Learn the DOS Bootup Process Personal computers are multi purpose devices. Understanding the normal startup process of the system helps troubleshoot problems that occur during boot up. 2-40

41 Understanding the DOS Boot Up DOS system files Process and Startup Disks IO.SYS handles hardware interaction and loading of drivers MSDOS.SYS is the kernel of DOS COMMAND.COM is the command interpreter 2-41

42 Understanding the DOS Boot Up Process and Startup Disks DOS system files (continued) DOS Configuration Files CONFIG.SYS adds device drivers and modifies DOS settings BUFFERS DEVICE DEVICEHIGH STACKS DOS FILES AUTOEXEC.BAT batch file loaded during bootup PATH PROMPTSET 2-42

43 Understanding the DOS Boot Up Process and Startup Disks The DOS Bootup Process A PC can be booted up by: Turning on the power switch of the PC (a cold boot) Using the Ctrl Alt Delete key combination to reboot the system (a warm boot) 2-43

44 Understanding the DOS Boot Up Process and Startup Disks The DOS Bootup Process (continued) The processor loads a special ROM based program, called Power On Self Test (POST) POST runs a series of small diagnostic tests on the hardware, and loads the bootstrap loader The bootstrap loader is a small program in the ROM BIOS 2-44

45 Understanding the DOS Boot Up Process and Startup Disks The DOS Bootup Process (continued) On a hard drive, the bootstrap loader looks into the MBR (master boot record) and reads the partition table for the primary active partition The bootstrap loader loads the boot sector from the logical drive, which, in turn, runs the operating system loading program 2-45

46 Understanding the DOS Boot Up Process and Startup Disks Creating a DOS Startup Floppy Disk Using FORMAT to create a startup disk Using SYS to create a startup disk Using Windows to create a startup disk 2-46

47 Understanding the DOS Boot Up Process and Startup Disks Using FORMAT to Create a Startup Disk The FORMAT command prepares the diskette and places a new root directory and FAT on the disk The /S switch option places the system files on the diskette 2-47

48 Understanding the DOS Boot Up Process and Startup Disks Step by Step 2.05 Create a Startup Floppy Disk Using FORMAT Page

49 Understanding the DOS Boot Up Process and Startup Disks Using SYS to Create a Startup Disk The SYS command places the DOS system files on a previously formatted floppy disk To put the DOS system files on a floppy disk enter sys a: 2-49

50 Understanding the DOS Boot Up Process and Startup Disks Using Windows to Create a Startup Disk In Windows 95 and 98 go to Control Panel Add/Remove Programs Startup Disk In Windows XP format a disk from within My Computer or Windows Explorer and select the option to create a MS DOS startup disk 2-50

51 Troubleshooting Common DOS Problems Non System Disk error message The OS loader program (boot sector) is unable to locate the IO.SYS, or MSDOS.SYS, or both Rectify by ensuring that the OS is booted from the disk that holds the OS 2-51

52 Troubleshooting Common DOS Problems Bad or Missing Command Interpreter error message Implies that the file COMMAND.COM is missing or that the version is different than IO.SYS and MSDOS.SYS Rectify by copying the COMMAND.COM file with the correct date and time from the floppy disk to the hard disk 2-52

53 Troubleshooting Common DOS Problems Bad Command or File Name error message Implies that the command name or the file name (or a directory name) used in the command line is incorrect Rectify by identifying typos and re entering the command correctly 2-53

54 Troubleshooting Common DOS Problems A request to enter the current date and time Means that DOS did not find an AUTOEXEC.BAT file If you previously had one, investigate why and how you don t now 2-54

55 Chapter Summary Finding DOS and Understanding Its Strengths and Weaknesses One reason DOS is still in limited use today is its small size, which makes it a choice for embedded systems Another reason is that its system files easily fit on a floppy disk, leaving room for other small programs Technicians can run diagnostic utilities from a DOS floppy disk 2-55

56 Chapter Summary Finding DOS and Understanding Its Strengths and Weaknesses Windows can run DOS in a virtual DOS machine Some applications run too slowly or not at all in a virtual machine, so they must be run on a computer running DOS DOS can only access real mode of the Intel processors DOS is a single tasking operating system DOS provides limited services for DOS 2-56

57 Chapter Summary Finding DOS and Understanding Its Strengths and Weaknesses DOS applications can only use conventional memory Microsoft no longer supports or sells MS DOS IBM sells PC DOS 2000 Digital Research sold DR DOS to Novell DR DOS is now sold through DeviceLogics Versions of DOS can be found for free on the Internet 2-57

58 Chapter Summary Installing DOS The MS DOS Setup program will partition and format a hard drive, if needed Hardware requirements for MS DOS are minimal: An IBM or compatible PC 6MB of free hard disk space 512KB of memory 2-58

59 Chapter Summary How the FAT File System Works DOS uses the FAT16 file system, and only uses conventional memory The FAT file system uses the 8.3 naming convention for files and directories It is best to use only alphanumeric characters A file s extension can indicate the type of file File attributes determine how DOS handles a file or directory File attributes are read only, archive, system, hidden, volume label, and directory 2-59

60 Chapter Summary Working with the DOS Command Prompt The ATTRIB command allows you to view and manipulate the read only, archive, system, and hidden attributes Internal command are part of COMMAND.COM and are always available and fast to access CLS, COPY, REN, DEL, MD, RD, CD, and TYPE are internal DOS commands External commands are in individual files, which must be where DOS can find them XCOPY, DELTREE, FORMAT, FDISK, and DISKCOPY are external commands 2-60

61 Chapter Summary Describe the DOS Bootup Process and Create Startup Disks It is important to understand the bootup process of an OS in order to troubleshoot failures that occur during bootup A hard boot of a PC occurs when you turn on the power switch 2-61

62 Chapter Summary Describe the DOS Bootup Process and Create Startup Disks A soft boot of a PC occurs when you press CTRL ALT DELETE Many computers have a Reset button, which resets a running computer without a powerdown and power up cycle 2-62

63 Chapter Summary Describe the DOS Bootup Process and Create Startup Disks The order of events during bootup of DOS is: Cold or warm boot POST Bootstrap loader looks on A: or C: drive and loads the boot record IO.SYS and MSDOS.SYS are loaded CONFIG.SYS (if it exists) is read and used by MSDOS.SYS COMMAND.COM is loaded 2-63

64 Chapter Summary Describe the DOS Bootup Process and Create Startup Disks DOS bootup order of events (continued) AUTOEXEC.BAT (if it exists) is read and used by COMMAND.COM The DOS prompt is displayed To create a DOS startup disk, you can: Use the DOS Setup program Use the SYS or FORMAT command Use the Startup Disk option in Windows 9x Format a floppy disk in Windows XP 2-64

65 Chapter Summary Troubleshoot Common DOS Problems A Non System Disk error message means that the OS loader cannot find IO.SYS or MSDOS.SYS Most likely cause is a data floppy disk left in drive A: Remove the floppy and reboot the computer A Bad or Missing Command Interpreter message means that COMMAND.COM is missing or is a different version than IO.SYS and MSDOS.SYS Boot from a DOS floppy disk of the correct version, and copy COMMAND.COM to the root of C: 2-65

66 Chapter Summary Troubleshoot Common DOS Problems A Bad Command or File Name error message means you need to check your spelling and reenter the command If you are required to enter the date and time when you boot up a computer there is probably no AUTOEXEC.BAT on the root of the boot disk. Create one, even if it is empty, and most PCs will use the internal clock for the time 2-66

Understanding the Boot Process and Command Line Chapter #3

Understanding the Boot Process and Command Line Chapter #3 Understanding the Boot Process and Command Line Chapter #3 Amy Hissom Key Terms 1. Active Partition the primary partition on the hard drive that boots the OS. Windows NT/2000/XP calls the active partition

More information

Installing a Second Operating System

Installing a Second Operating System Installing a Second Operating System Click a link below to view one of the following sections: Overview Key Terms and Information Operating Systems and File Systems Managing Multiple Operating Systems

More information

Active@ Password Changer for DOS User Guide

Active@ Password Changer for DOS User Guide Active@ Password Changer for DOS User Guide 1 Active@ Password Changer Guide Copyright 1999-2014, LSOFT TECHNOLOGIES INC. All rights reserved. No part of this documentation may be reproduced in any form

More information

LECTURE-7. Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. Topics:

LECTURE-7. Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. Topics: Topics: LECTURE-7 Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. BASIC INTRODUCTION TO DOS OPERATING SYSTEM DISK OPERATING SYSTEM (DOS) In the 1980s or early 1990s, the operating

More information

A Computer Glossary. For the New York Farm Viability Institute Computer Training Courses

A Computer Glossary. For the New York Farm Viability Institute Computer Training Courses A Computer Glossary For the New York Farm Viability Institute Computer Training Courses 2006 GLOSSARY This Glossary is primarily applicable to DOS- and Windows-based machines and applications. Address:

More information

Fall 2009. Lecture 1. Operating Systems: Configuration & Use CIS345. Introduction to Operating Systems. Mostafa Z. Ali. mzali@just.edu.

Fall 2009. Lecture 1. Operating Systems: Configuration & Use CIS345. Introduction to Operating Systems. Mostafa Z. Ali. mzali@just.edu. Fall 2009 Lecture 1 Operating Systems: Configuration & Use CIS345 Introduction to Operating Systems Mostafa Z. Ali mzali@just.edu.jo 1-1 Chapter 1 Introduction to Operating Systems An Overview of Microcomputers

More information

Shree M. & N. Virani Science College. DOS Commands. By Milan Kothari. Yogidham, Kalawad Road, Rajkot 5 Ph : 2576681

Shree M. & N. Virani Science College. DOS Commands. By Milan Kothari. Yogidham, Kalawad Road, Rajkot 5 Ph : 2576681 DOS Commands By Milan Kothari What Is Dos? DOS or the Disk Operating System designed to operate personal computer is basically a collection of software programs that help to manage the personal computer

More information

STUDY GUIDE CHAPTER 4

STUDY GUIDE CHAPTER 4 STUDY GUIDE CHAPTER 4 True/False Indicate whether the statement is true or false. 1. A(n) desktop operating system is designed for a desktop or notebook personal computer. 2. A(n) mirrored user interface

More information

A+ Guide to Software: Managing, Maintaining, and Troubleshooting, 5e. Chapter 3 Installing Windows

A+ Guide to Software: Managing, Maintaining, and Troubleshooting, 5e. Chapter 3 Installing Windows : Managing, Maintaining, and Troubleshooting, 5e Chapter 3 Installing Windows Objectives How to plan a Windows installation How to install Windows Vista How to install Windows XP How to install Windows

More information

Operating System Today s Operating Systems File Basics File Management Application Software

Operating System Today s Operating Systems File Basics File Management Application Software Lecture Content Operating System Today s Operating Systems File Basics File Management Application Software Operating Systems and File Management 2 Operating Systems and File Management 3 Operating System

More information

Chapter 14 MS-DOS Operating System

Chapter 14 MS-DOS Operating System Understanding Operating Systems, Fifth Edition 14-1 Chapter 14 MS-DOS Operating System At a Glance Instructor s Manual Table of Contents Overview Objectives s Quick Quizzes Class Discussion Topics Additional

More information

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 2 Introducing Operating Systems

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 2 Introducing Operating Systems A+ Guide to Managing and Maintaining Your PC, 7e Chapter 2 Introducing Operating Systems Objectives Learn about the various operating systems and the differences between them Learn about the components

More information

IBM Rapid Restore PC powered by Xpoint - v2.02 (build 6015a)

IBM Rapid Restore PC powered by Xpoint - v2.02 (build 6015a) IBM Rapid Restore PC powered by Xpoint - v2.02 (build 6015a) User s Reference Guide Internal IBM Use Only This document only applies to the software version listed above and information provided may not

More information

Chapter 5: Fundamental Operating Systems

Chapter 5: Fundamental Operating Systems Chapter 5: Fundamental Operating Systems IT Essentials: PC Hardware and Software v4.1 Chapter5 2007-2010 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Chapter 5 Objectives 5.1 Explain the purpose

More information

Chapter 5: Operating Systems Part 1

Chapter 5: Operating Systems Part 1 Name Period Chapter 5: Operating Systems Part 1 1. What controls almost all functions on a computer? 2. What operating systems will be discussed in this chapter? 3. What is meant by multi-user? 4. Explain

More information

Chapter Contents. Operating System Activities. Operating System Basics. Operating System Activities. Operating System Activities 25/03/2014

Chapter Contents. Operating System Activities. Operating System Basics. Operating System Activities. Operating System Activities 25/03/2014 Chapter Contents Operating Systems and File Management Section A: Operating System Basics Section B: Today s Operating Systems Section C: File Basics Section D: File Management Section E: Backup Security

More information

USB 2.0 Flash Drive User Manual

USB 2.0 Flash Drive User Manual USB 2.0 Flash Drive User Manual 1 INDEX Table of Contents Page 1. IMPORTANT NOTICES...3 2. PRODUCT INTRODUCTION...4 3. PRODUCT FEATURES...5 4. DRIVER INSTALLATION GUIDE...6 4.1 WINDOWS 98 / 98 SE... 6

More information

User Guide. Version Number 3.0

User Guide. Version Number 3.0 User Guide Version Number 3.0 Copyright 2003, LSOFT TECHNOLOGIES INC. All rights reserved. No part of this documentation may be reproduced in any form or by any means or used to make any derivative work

More information

Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual

Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual Installing a hard disk 1. Power off the unit. 2. Remove the bottom cover from the unit by removing four screws. 3. Insert the 2.5 HDD to the

More information

NTLDR is missing. Below are the full error messages that may be seen when the computer is booting.

NTLDR is missing. Below are the full error messages that may be seen when the computer is booting. NTLDR is missing Issue NTLDR is Missing. Related errors Below are the full error messages that may be seen when the computer is booting. NTLDR is Missing Press any key to restart Boot: Couldn't find NTLDR

More information

USERS MANUAL PRODUCT OVERVIEW SYSTEM REQUIREMENTS

USERS MANUAL PRODUCT OVERVIEW SYSTEM REQUIREMENTS Active@ Password Changer v.3.0 Copyright 1998-2008 Active@ Data Recovery Software LSoft Technologies Inc. USERS MANUAL PRODUCT OVERVIEW Active@ Password Changer is a DOS-based solution designed for resetting

More information

Outline: Operating Systems

Outline: Operating Systems Outline: Operating Systems What is an OS OS Functions Multitasking Virtual Memory File Systems Window systems PC Operating System Wars: Windows vs. Linux 1 Operating System provides a way to boot (start)

More information

The PC Boot Process - Windows XP.

The PC Boot Process - Windows XP. The PC Boot Process - Windows XP. Power supply switched on. The power supply performs a selftest. When all voltages and current levels are acceptable, the supply indicates that the power is stable and

More information

DOS Command Reference DOS Commands Found in DOS 6.22, Windows 95, and Windows 98

DOS Command Reference DOS Commands Found in DOS 6.22, Windows 95, and Windows 98 DOS Reference Even if the systems you support, upgrade, and repair are all running the latest version of Windows, you will inevitably find yourself occasionally troubleshooting these systems from the DOS

More information

Technology in Action. Alan Evans Kendall Martin Mary Anne Poatsy. Eleventh Edition. Copyright 2015 Pearson Education, Inc.

Technology in Action. Alan Evans Kendall Martin Mary Anne Poatsy. Eleventh Edition. Copyright 2015 Pearson Education, Inc. Technology in Action Alan Evans Kendall Martin Mary Anne Poatsy Eleventh Edition Technology in Action Chapter 4 System Software: The Operating System, Utility Programs, and File Management. Chapter Topics

More information

We reserve the right to make technical changes.

We reserve the right to make technical changes. User Guide External Hard Disk with USB 1.1/2.0 and IEEE 1394 connection Copyright 2003 All rights reserved. This manual is protected by Copyright. The Copyright is owned by Medion. Trademarks: MS-DOS and

More information

Installing, upgrading and troubleshooting your CLIO system under the Windows environment.

Installing, upgrading and troubleshooting your CLIO system under the Windows environment. Installing, upgrading and troubleshooting your CLIO system under the Windows environment. Audiomatica Srl Rev. 1.1. June 2001. Contents 1 What does this document cover?... 1 2 Windows compatibility...

More information

Partitioning and Formatting Reference Guide

Partitioning and Formatting Reference Guide Partitioning and Formatting Reference Guide This guide provides simple guidelines for the initial setup of your hard disk drive using the most common methods and utilities available within the following

More information

Chapter 8 Objectives. Chapter 8 Operating Systems and Utility Programs. Operating Systems. Operating Systems. Operating Systems.

Chapter 8 Objectives. Chapter 8 Operating Systems and Utility Programs. Operating Systems. Operating Systems. Operating Systems. Chapter 8 Objectives Chapter 8 s and Utility Programs Describe the two types of software Understand the startup process for a personal computer Describe the term user interface Explain features common

More information

How to install the RTL8029 PCI Adapter Boot Rom for Windows95

How to install the RTL8029 PCI Adapter Boot Rom for Windows95 How to install the RTL8029 PCI Adapter Boot Rom for Windows95 0.0 Preview 1.0 Installing the Remoteboot Service on the Server 1.1 Installing Windows 95 for Windows 95 Clients Add DLC and NetBEUI Protocol,

More information

Infiniium Upgrade and Recovery Guide

Infiniium Upgrade and Recovery Guide Infiniium Upgrade and Recovery Guide For detailed upgrade and recovery instructions, find the section of this document that pertains to your particular model number. If your model number is not printed

More information

MBR and EFI Disk Partition Systems

MBR and EFI Disk Partition Systems MBR and EFI Disk Partition Systems Brought to you by www.rmroberts.com Computer technology is constantly evolving. The hard disk drive partition system has become quite complicated in recent years because

More information

Installing Windows 98 in Windows Virtual PC 7 (Windows Virtual PC)

Installing Windows 98 in Windows Virtual PC 7 (Windows Virtual PC) Installing Windows 98 in Windows Virtual PC 7 (Windows Virtual PC) Before beginning, you will need to have a Windows 98 installation CD and a Windows 98 license key and a bootable CD. A bootable floppy

More information

Chapter 4. System Software. What You Will Learn... Computers Are Your Future. System Software. What You Will Learn... Starting the Computer

Chapter 4. System Software. What You Will Learn... Computers Are Your Future. System Software. What You Will Learn... Starting the Computer What You Will Learn... Computers Are Your Future Chapter 4 The two major components of operating system software Why a computer isn t useful without an operating system The five basic functions of an operating

More information

ALTIRIS Deployment Solution 6.8 Preboot Automation Environment

ALTIRIS Deployment Solution 6.8 Preboot Automation Environment ALTIRIS Deployment Solution 6.8 Preboot Automation Environment The information contained in the Altiris knowledgebase is subject to the Terms of Use as outlined at http://www.altiris.com/legal/termsofuse.asp.

More information

Lab - Dual Boot - Vista & Windows XP

Lab - Dual Boot - Vista & Windows XP Lab - Dual Boot - Vista & Windows XP Brought to you by RMRoberts.com After completing this lab activity, you will be able to: Install and configure a dual boot Windows XP and Vista operating systems. Explain

More information

A+ Demo: Windows 95. A+ OS Domain 1.0. In Depth - The History of the User Interface

A+ Demo: Windows 95. A+ OS Domain 1.0. In Depth - The History of the User Interface IFSM 310 Software and Hardware Concepts "Imagine if every Thursday your shoes exploded if you tied them the usual way. This happens to us all the time with computers, and nobody thinks of complaining."

More information

Chapter 3: Operating-System Structures. System Components Operating System Services System Calls System Programs System Structure Virtual Machines

Chapter 3: Operating-System Structures. System Components Operating System Services System Calls System Programs System Structure Virtual Machines Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines Operating System Concepts 3.1 Common System Components

More information

HP Z220, Z420, Z620, and Z820 Workstations Microsoft Windows XP Installation Reference Guide

HP Z220, Z420, Z620, and Z820 Workstations Microsoft Windows XP Installation Reference Guide HP Z220, Z420, Z620, and Z820 Workstations Microsoft Windows XP Installation Reference Guide Important information on installing the Windows XP Operating System on HP Z220, Z420, Z620 and Z820 Workstations.

More information

Windows OS File Systems

Windows OS File Systems Windows OS File Systems MS-DOS and Windows 95/98/NT/2000/XP allow use of FAT-16 or FAT-32. Windows NT/2000/XP uses NTFS (NT File System) File Allocation Table (FAT) Not used so much, but look at as a contrast

More information

Getting Started with VMware Fusion

Getting Started with VMware Fusion Getting Started with VMware Fusion VMware Fusion for Mac OS X 2008 2012 EN-000933-00 2 Getting Started with VMware Fusion You can find the most up-to-date technical documentation on the VMware Web site

More information

Chapter 4. Operating Systems and File Management

Chapter 4. Operating Systems and File Management Chapter 4 Operating Systems and File Management Chapter Contents Section A: Operating System Basics Section B: Today s Operating Systems Section C: File Basics Section D: File Management Section E: Backup

More information

Chapter 3 Software Installation

Chapter 3 Software Installation Software Installation Chapter 3 Software Installation This chapter provides information on how to install the CyberSerial PCI s drivers and utilities for the following operating systems: Windows 95/98

More information

PKZIP 6.0. Command Line for Windows Getting Started Manual

PKZIP 6.0. Command Line for Windows Getting Started Manual PKZIP 6.0 Command Line for Windows Getting Started Manual Copyright 2000-2002 PKWARE, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

More information

DOS COMMAND EXAMPLES. TIME To set your computer's clock to 1:36 P.M., use either of the following commands:

DOS COMMAND EXAMPLES. TIME To set your computer's clock to 1:36 P.M., use either of the following commands: DIR Suppose you want to display all files and directories in a directory, including hidden or system files. To specify this display, type the following command: dir /a Suppose you want DIR to display one

More information

Argon Client Management Services- Frequently Asked Questions (FAQ)

Argon Client Management Services- Frequently Asked Questions (FAQ) Simplifying Client Management FAQ Argon - Frequently Asked Questions (FAQ) What are the server requirements? Operating Systems: Windows 98, Windows NT Version 4.0 (Service Pack 4 or later, IE 4 or later),

More information

ADMINISTRATOR S GUIDE

ADMINISTRATOR S GUIDE F O R W I N D O W S N T ADMINISTRATOR S GUIDE 1997 Claris Corporation. All Rights Reserved. Claris Corporation 5201 Patrick Henry Drive Santa Clara, California 95052 Claris and FileMaker are trademarks

More information

Guide to SATA Hard Disks Installation and RAID Configuration

Guide to SATA Hard Disks Installation and RAID Configuration Guide to SATA Hard Disks Installation and RAID Configuration 1. Guide to SATA Hard Disks Installation... 2 1.1 Serial ATA (SATA) Hard Disks Installation... 2 2. Guide to RAID Configurations... 3 2.1 Introduction

More information

TotalShredder USB. User s Guide

TotalShredder USB. User s Guide TotalShredder USB User s Guide Copyright Notice No part of this publication may be copied, transmitted, stored in a retrieval system or translated into any language in any form or by any means without

More information

Upon completion of this chapter, you will able to answer the following questions:

Upon completion of this chapter, you will able to answer the following questions: CHAPTER 2 Operating Systems Objectives Upon completion of this chapter, you will able to answer the following questions: What is the purpose of an OS? What role do the shell and kernel play? What is the

More information

5COMPUTER SCIENCE For Class IX (marks 55)

5COMPUTER SCIENCE For Class IX (marks 55) 5COMPUTER SCIENCE For Class IX (marks 55) 1. Introduction to Computers o History and development of computers - Types of computers (analogue, digital, hybrid) - Classification of digital computers (micro,

More information

User Manual. Copyright Rogev LTD

User Manual. Copyright Rogev LTD User Manual Copyright Rogev LTD Introduction Thank you for choosing FIXER1. This User's Guide is provided to you to familiar yourself with the program. You can find a complete list of all the program's

More information

1.0. User s Guide & Manual USB 2.0 FLASH DRIVE

1.0. User s Guide & Manual USB 2.0 FLASH DRIVE 1.0 USB 2.0 FLASH DRIVE User s Guide & Manual Index Introduction 1 CHAPTER1 Features & Specifications 2 CHAPTER2 System Requirements 4 CHAPTER3 Getting Started Installation of the Windows 98SE Driver 5

More information

Using. Microsoft Virtual PC. Page 1

Using. Microsoft Virtual PC. Page 1 Using Microsoft Virtual PC T4 Page 1 Microsoft Virtual PC Microsoft Virtual PC allows multiple Guest Operating Systems (Virtual Machines) to run using the resources of the Host Operating System (The PC

More information

Guest Operating System. Installation Guide

Guest Operating System. Installation Guide Guest Operating System Installation Guide VMware, Inc. 3145 Porter Drive Palo Alto, CA 94304 www.vmware.com Please note that you will always find the most up-to-date technical documentation on our Web

More information

Chapter 8 Operating Systems and Utility Programs

Chapter 8 Operating Systems and Utility Programs Operating Systems What are the functions of an? start the computer provide a user interface manage programs Chapter 8 Operating Systems and Utility Programs administer security control a network manage

More information

Chapter 3. Operating Systems

Chapter 3. Operating Systems Christian Jacob Chapter 3 Operating Systems 3.1 Evolution of Operating Systems 3.2 Booting an Operating System 3.3 Operating System Architecture 3.4 References Chapter Overview Page 2 Chapter 3: Operating

More information

Chapter 6 The BIOS Setup Program

Chapter 6 The BIOS Setup Program 6 Chapter 6 The BIOS Setup Program 6.1 Introduction The BIOS (Basic Input and Output System) Setup program is a menu driven utility that enables you to make changes to the system configuration and tailor

More information

DOS Command Reference

DOS Command Reference DOS Command Reference Introduction Some course material on the Teaching Network may still use the command line operating system called DOS (Disk Operating System). This requires the user to type specific

More information

Product Support Bulletin

Product Support Bulletin EPSON Product Support Bulletin Subject: Proper Method for Running Benchmark and Diagnostics Programs Date: 06/04/93 PSB No: S-0158 Page(s): 1 of 1 Originator: MWT This bulletin describes the proper method

More information

Parallels Transporter Agent

Parallels Transporter Agent Parallels Transporter Agent User's Guide Copyright 1999-2015 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen Switzerland

More information

Review from last time. CS 537 Lecture 3 OS Structure. OS structure. What you should learn from this lecture

Review from last time. CS 537 Lecture 3 OS Structure. OS structure. What you should learn from this lecture Review from last time CS 537 Lecture 3 OS Structure What HW structures are used by the OS? What is a system call? Michael Swift Remzi Arpaci-Dussea, Michael Swift 1 Remzi Arpaci-Dussea, Michael Swift 2

More information

Pre-Installation: Personal Storage 3100 Installation Guide. Hardware and Operating System Requirements for Windows PC

Pre-Installation: Personal Storage 3100 Installation Guide. Hardware and Operating System Requirements for Windows PC Pre-Installation: Thank You Thank you for selecting a Maxtor Personal Storage product. Please follow these instructions to take full advantage of its features. Handling Precautions If these handling precautions

More information

EZ DUPE DVD/CD Duplicator

EZ DUPE DVD/CD Duplicator EZ DUPE DVD/CD Duplicator User s Manual Version 3.0 0 TABLE OF CONTENTS Introduction 2 Setup 11 LCD Front Panel Overview 2 o Auto Start Time 11 Menu Overview 3-5 o Display Mode 12 Functions 6 o Button

More information

Click to view Web Link, click Chapter 8, Click Web Link from left navigation, then click BIOS below Chapter 8 p. 395 Fig. 8-4.

Click to view Web Link, click Chapter 8, Click Web Link from left navigation, then click BIOS below Chapter 8 p. 395 Fig. 8-4. Chapter 8 Objectives Chapter 8 Operating Systems and Utility Programs Identify the the types types of of system software Summarize the the startup process on on a a personal computer Describe the the functions

More information

VMware Server 2.0 Essentials. Virtualization Deployment and Management

VMware Server 2.0 Essentials. Virtualization Deployment and Management VMware Server 2.0 Essentials Virtualization Deployment and Management . This PDF is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights reserved.

More information

70-271. Supporting Users and Troubleshooting a Microsoft Windows XP Operating System Q&A. DEMO Version

70-271. Supporting Users and Troubleshooting a Microsoft Windows XP Operating System Q&A. DEMO Version Supporting Users and Troubleshooting a Microsoft Windows XP Operating System Q&A DEMO Version Copyright (c) 2007 Chinatag LLC. All rights reserved. Important Note Please Read Carefully For demonstration

More information

OEM GUIDE True Image OEM

OEM GUIDE True Image OEM OEM GUIDE True Image OEM www.acronis.com Copyright SWsoft, 2000-2003. All rights reserved. Linux is a registered trademark of Linus Torvalds. OS/2 is a registered trademark of IBM Corporation. UNIX is

More information

UEFI on Dell BizClient Platforms

UEFI on Dell BizClient Platforms UEFI on Dell BizClient Platforms Authors: Anand Joshi Kurt Gillespie This document is for informational purposes only and may contain typographical errors and technical inaccuracies. The content is provided

More information

Table of Contents. Online backup Manager User s Guide

Table of Contents. Online backup Manager User s Guide Table of Contents Backup / Restore Windows System (WBAdmin)... 2 Requirements and recommendations... 2 Overview... 3 1.1 How to backup Microsoft Windows System (WBAdmin)... 5 How to restore Microsoft Windows

More information

Operating System Installation Guidelines

Operating System Installation Guidelines Operating System Installation Guidelines The following document guides you step-by-step through the process of installing the operating systems so they are properly configured for boot camp. The document

More information

Active Data Recovery Software. User Guide. Version Number 2.1

Active Data Recovery Software. User Guide. Version Number 2.1 Active Data Recovery Software User Guide Version Number 2.1 Active@ Partition Recovery END-USER LICENSE AGREEMENT Copyright 1998-2002 Active Data Recovery Software. All rights reserved. IMPORTANT-READ

More information

www.devicemanuals.eu

www.devicemanuals.eu AMD RAID Introduction The integrate one SATA host controller separately, and support RAID function for performance and reliability. SB950 SATA RAID provides support for RAID 0 (Striping), RAID 1 (Mirroring),

More information

Operating System Software

Operating System Software Operating System Software Lecture 7 The operating system Defines our computing experience. First software we see when we turn on the computer, and the last software we see when the computer is turned off.

More information

Reborn Card NET. User s Manual

Reborn Card NET. User s Manual Reborn Card NET User s Manual Table of Contents Notice Before Installation:... 2 System Requirements... 3 1. First Installation... 4 2. Hardware Setup... 4 3. Express Installation... 6 4. How to setup

More information

USB. 16MB~2GB JetFlash. User s Manual

USB. 16MB~2GB JetFlash. User s Manual USB 16MB~2GB JetFlash User s Manual Introduction Table of Contents Package Contents...1 Features...1 System Requirements...2 Before Use...2 Driver Installation Driver Installation for Windows 98/98SE...3

More information

ACTIVE@ UNDELETE 7.0 USER GUIDE

ACTIVE@ UNDELETE 7.0 USER GUIDE ACTIVE@ UNDELETE 7.0 USER GUIDE COPYRIGHT Copyright 27, LSOFT TECHNOLOGIES INC. All rights reserved. No part of this documentation may be reproduced in any form or by any means or used to make any derivative

More information

HP ProLiant ML110 Server Network Operating System Installation Guide

HP ProLiant ML110 Server Network Operating System Installation Guide HP ProLiant ML110 Server Network Operating System Installation Guide January 2004 (First Edition) Part Number 344-535-001 Regulatory Model Number HSTNS-3100 2004 Hewlett-Packard Development Company, L.P.

More information

2-2. 2 nd.edition 1-2004

2-2. 2 nd.edition 1-2004 Software Guide 2-1 2-2 2 nd.edition 1-2004 Software Installation and Configuration Notes Before setting Partition size 重 要. Minimum size of the partition can be calculated from the following formula. 1635MB

More information

Microsoft Office Outlook 2013: Part 1

Microsoft Office Outlook 2013: Part 1 Microsoft Office Outlook 2013: Part 1 Course Specifications Course Length: 1 day Overview: Email has become one of the most widely used methods of communication, whether for personal or business communications.

More information

4.1 Introduction 4.2 Explain the purpose of an operating system 4.2.1 Describe characteristics of modern operating systems Control Hardware Access

4.1 Introduction 4.2 Explain the purpose of an operating system 4.2.1 Describe characteristics of modern operating systems Control Hardware Access 4.1 Introduction The operating system (OS) controls almost all functions on a computer. In this lecture, you will learn about the components, functions, and terminology related to the Windows 2000, Windows

More information

Installing a fresh version of Windows 95b

Installing a fresh version of Windows 95b What you will need Page 2 Summary of what will be involved Page 3 Configuring the BIOS to boot from A: Page 4 Partitioning and formatting the hard disk Partitioning the hard disk (FDISK) Page 5 Formatting

More information

Installing the Operating System with Express Setup

Installing the Operating System with Express Setup Chapter 5 Installing the Operating System with Express Setup This section describes information on using Express Setup to install and configure the following operating systems to the server. Microsoft

More information

Windows Server 2003 with SP1 Installation Guide. Version 1 855-900550-200

Windows Server 2003 with SP1 Installation Guide. Version 1 855-900550-200 Windows Server 2003 with SP1 Installation Guide Version 1 855-900550-200 1 CONTENTS WINDOWS SERVER 2003 WITH SP1... 1 INSTALLATION GUIDE... 1 SOFTWARE INSTALLATION AND CONFIGURATION NOTES... 3 Before setting...

More information

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 16 Fixing Windows Problems

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 16 Fixing Windows Problems A+ Guide to Managing and Maintaining Your PC, 7e Chapter 16 Fixing Windows Problems Objectives Learn what to do when a hardware device, application, or Windows component gives a problem Learn what to do

More information

Installing Microsoft Windows 98 on Compaq Portable Products

Installing Microsoft Windows 98 on Compaq Portable Products White Paper Publication date: November 1998 PRT011B0998 Prepared by Software Marketing Compaq Computer Corporation Summary...3 Installation Requirements and Dependencies...3 Terms and Assumptions...4 Installation

More information

Corsair Flash Voyager USB 2.0 Flash Drive UFD Utility User s Manual

Corsair Flash Voyager USB 2.0 Flash Drive UFD Utility User s Manual Corsair Flash Voyager USB 2.0 Flash Drive UFD Utility User s Manual Contents For AP v2.10.0.0 Release For Windows 98/ME/2000/XP Version 1.1B (08/27/2004) Contents...1 Introduction...1 Features & Specifications...2

More information

BIOS and CMOS. Overview. The Function of BIOS. The Bus

BIOS and CMOS. Overview. The Function of BIOS. The Bus Overview BIOS and CMOS In this chapter, you will learn to Explain the function of BIOS Distinguish among various CMOS setup utility options Describe BIOS and device drives Troubleshoot the Power-On Self

More information

HP Integrity Servers with Microsoft Windows Server 2003 for Itanium-based Systems Recovering Windows Server 2003 on HP Integrity Servers

HP Integrity Servers with Microsoft Windows Server 2003 for Itanium-based Systems Recovering Windows Server 2003 on HP Integrity Servers HP Integrity Servers with Microsoft Windows Server 2003 for Itanium-based Systems Recovering Windows Server 2003 on HP Integrity Servers HP Part Number: 5992-4471 Published: April 2008 Copyright 2008 Hewlett-Packard

More information

R A D I O N I C S. READYKEY K6100 Readykey for Windows Software Installation Manual. 17242 Ver. 5.0

R A D I O N I C S. READYKEY K6100 Readykey for Windows Software Installation Manual. 17242 Ver. 5.0 R A D I O N I C S READYKEY K6100 Readykey for Windows Software Installation Manual 17242 Ver. 5.0 74-07046-000-E 01/99 1999 Radionics Notice The material and instructions in this manual have been carefully

More information

Embedded Operating Systems in a Point of Sale Environment. White Paper

Embedded Operating Systems in a Point of Sale Environment. White Paper Embedded Operating Systems in a Point of Sale Environment White Paper December 2008 Contents Embedded Operating Systems in a POS Environment... 3 Overview... 3 POS Operating Systems... 3 Operating Systems

More information

Using Virtual PC 7.0 for Mac with GalleryPro

Using Virtual PC 7.0 for Mac with GalleryPro Using Virtual PC 7.0 for Mac with GalleryPro Installing and Configuring What is Virtual PC for Mac? Virtual PC (VPC) is emulation software that simulates an actual (though virtual) Windows computer running

More information

LSN 10 Linux Overview

LSN 10 Linux Overview LSN 10 Linux Overview ECT362 Operating Systems Department of Engineering Technology LSN 10 Linux Overview Linux Contemporary open source implementation of UNIX available for free on the Internet Introduced

More information

About Parallels Desktop 10 for Mac

About Parallels Desktop 10 for Mac About Parallels Desktop 10 for Mac Parallels Desktop 10 for Mac is a major upgrade to Parallels award-winning software for running Windows on a Mac. About this Update This update for Parallels Desktop

More information

Server & Client Optimization

Server & Client Optimization Table of Contents: Farmers WIFE / Farmers WIFE Advanced Make sure your Server specification is within the requirements... 2 Operating System... 2 Hardware... 2 Processor Server... 2 Memory... 2 Hard disk

More information

Unit 4 Objectives. System Software. Component 4: Introduction to Information and Computer Science. Unit 4: Application and System Software Lecture 2

Unit 4 Objectives. System Software. Component 4: Introduction to Information and Computer Science. Unit 4: Application and System Software Lecture 2 Component 4: Introduction to Information and Computer Science Unit 4: Application and System Software Lecture 2 This material was developed by Oregon Health & Science University, funded by the Department

More information

Intel Server Raid Controller. RAID Configuration Utility (RCU)

Intel Server Raid Controller. RAID Configuration Utility (RCU) Intel Server Raid Controller RAID Configuration Utility (RCU) Revision 1.1 July 2000 Revision History Date Rev Modifications 02/13/00 1.0 Initial Release 07/20/00 1.1 Update to include general instructions

More information

PaperClip32. Installation Guide. for Workgroup and Enterprise Editions. Document Revision 2.1 1

PaperClip32. Installation Guide. for Workgroup and Enterprise Editions. Document Revision 2.1 1 PaperClip32 Installation Guide for Workgroup and Enterprise Editions Document Revision 2.1 1 Copyright Information Copyright 2005, PaperClip Software, Inc. The PaperClip32 product name and PaperClip Logo

More information

DataTraveler Vault - Privacy User Manual

DataTraveler Vault - Privacy User Manual DataTraveler Vault - Privacy User Manual Document No. 48000012-001.A02 DataTraveler Vault - Privacy Page 1 of 29 Table of Contents About This Manual... 3 System Requirements... 3 Recommendations... 4 Setup

More information

USB FLASH DRIVE. User s Manual 1. INTRODUCTION...1 1.1. FEATURES...1 1.2. SPECIFICATIONS...2 1.3. PACKAGE CONTENTS...2 1.4. SYSTEM REQUIREMENTS...

USB FLASH DRIVE. User s Manual 1. INTRODUCTION...1 1.1. FEATURES...1 1.2. SPECIFICATIONS...2 1.3. PACKAGE CONTENTS...2 1.4. SYSTEM REQUIREMENTS... Table of Contents 1. INTRODUCTION...1 1.1. FEATURES...1 1.2. SPECIFICATIONS...2 1.3. PACKAGE CONTENTS...2 1.4. SYSTEM REQUIREMENTS...2 2. INSTALLATION PROCEDURE...3 2.1. INSTALL USB FLASH DRIVE ON WINDOWS

More information