Skip to main content

About DOS

Introduction to DOS


Q) What is DOS?
A) In simple terms, a disk operating system provides a predictable linkage (one following established rules) between your computers electronic circuitry (hardware) and the software programs you use, such as word processors, electronic spreadsheets, database managers, and accounting programs.


In addition to providing the software-to-machine interface, DOS features a host of handy "housekeeping tools" For example, there are special utilities for preparing new disks, listing the contents (or filenames) of a magnetic disk on the display screen or to your printer, creating, copying, deleting, and combining files, and much more.
These features are described in this blog. Visit This Link 

The DOS program is sophisticated; it often appears intimidating because its commands are cryptic. DOS does not display a series of friendly menus or user messages. To the contrary, it displays a letter and a blinking cursor. Although it is not apparent, this is the DOS prompt, where a prompt invites you to type a command from the keyboard.

Therefore, it is necessary for you to memorize a few fundamental DOS commands, where commands are typed instructions recognized by DOS. English-speaking countries are fortunate, because most DOS commands displays a directory (or list) of filenames on the screen. The FORMAT command is used to format (or prepare) a new magnetic storage disk for use with your microcomputer.

DOS stays out of your way unless you call on it by entering one of its special commands. Of course, you can ignore DOS by running package applications programs that contain all necessary DOS strongly recommended if you are to exploit the full power of your microcomputer.

You can do useful things by leaning a half-dozen or so commands. The more you use DOS, the richer it becomes. After a brief exposure, you will begin to feel like a veteran computer user, because the utility of DOS lets you get down to the nuts and bolts to file creation and management.

Comments

Post a Comment

Popular posts from this blog

MEM

MEM The MEM command was introduced in DOS version 4.01 and memory information. The MEM command is entered alone or with a modified slightly in MS-DOS 5.00. MEM is used to display system memory information. The MEM command is entered alone or with a parameter. MEM-Displays to all system memory values, including expanded and extended memory values. MEM PROGRAM--Displays programs presently loaded in memory with used and unused memory. You may use /P if you are using DOS 5.00 MEM/DEBUG--Dispiays a list of programs, device drivers, install drivers, and used unused memory. You may use / if you are using DOS 5.00. MEM CLASSIFY (or MEM /C)-Displays programs and cor-responding memory usage. The largest available memory block is also displayed. You may use /C if you are using DOS 5.00. Typing MEM and pressing Enter displays information similar to the following (typical of DOS 5.00): C:\>MEM                  ...

Path

The PATH command is used to provide access to files located in other directories or on other disks. The PATH command is usually entered as a line in an AUTOEXEC.BAT (or batch) file, which most often contains one or more DOS commands. The AUTOEXEC.BAT file is automatically executed upon system turn-on to run one or more desired programs without the need for user intervention. Other batch  files are executed upon command. When an AUTOEXEC.CAT file is used, each command contained in the file executes as it is encountered. The creation and use of batch files is described in Section 8. To illustrate the PATH command, assume you have a program named GATOR.COM that is located in a sub directory. You are not sure if it is cn disk C or disk A, so you want to search both disks and execute the command when found. To complicate matters, you are not sure if the program is in the SWAMP sub directory or the MUD sub directory. Here is where the PATH command comes to your rescue. To set up a search...