Microsoft Wiki

Be sure to join our wiki's Discord server by clicking here
Also follow our wiki's Twitter by clicking here

READ MORE

Microsoft Wiki
Register
Advertisement
File:FreeDOS Beta 9 pre-release5 (command line interface) on Bochs sshot20040912.png

The FreeDOS startup sequence.

DOS, short for "Disk Operating System",[1] is a shorthand term for several closely related operating systems that dominated the IBM PC compatible market between 1981 and 1995, or until about 2000 if one includes the partially DOS-based Microsoft Windows versions 95, 98, and Millennium Edition.

Related systems include MS-DOS, PC-DOS, DR-DOS, FreeDOS, PTS-DOS, ROM-DOS, JM-OS, and several others.

In spite of the common usage, none of these systems were simply named "DOS" (a name given only to an unrelated IBM mainframe operating system in the 1960s). A number of unrelated, non-x86 microcomputer disk operating systems had "DOS" in their name, and are often referred to simply as "DOS" when discussing machines that use them (e.g. AmigaDOS, AMSDOS, ANDOS, Apple DOS, Atari DOS, Commodore DOS, CSI-DOS, ProDOS, and TRS-DOS). While providing many of the same operating system functions for their respective computer systems, programs running under any one of these operating systems would not run under others.


Design[]

All DOS-type operating systems run on machines with the Intel x86 or compatible CPUs, mainly the IBM PC and compatibles. Initially, DOS was not restricted to these, and machine-dependent versions of DOS and similar operating systems were produced for many non-IBM-compatible x86-based machines.[2] In particular, DOS-C's predecessor DOS/NT ran on Motorola 68000 CPU's.

DOS is a single-user, single-task operating system with basic kernel functions that are non-reentrant: only one program at a time can use them. There is an exception with Terminate and Stay Resident (TSR) programs, and some TSRs can allow multitasking. However, there is still a problem with the non-reentrant kernel: once a process calls a service inside of operating system kernel (system call), it must not be interrupted with another process calling system call, until the first call is finished.[3]

The DOS kernel provides various functions for programs, like displaying characters on-screen, reading a character from the keyboard, accessing disk files and more.

API[]

Scripting[]

DOS by default provides a primitive ability for shell scripting, via batch files (with the filename extension .BAT). These are text files that can be created in any DOS text editor, such as the MS-DOS Editor. They are executed in the same fashion as compiled programs, and run each line of the batch file as a command. Batch files can also make use of several internal commands, such as goto and conditional statements.[4] gosub and simple arithmetic is supported in some third-party shells but can also be faked via strange workarounds; however, no real form of programming is usually enabled.

The operating system offers a hardware abstraction layer that allows development of character-based applications, but not for accessing most of the hardware, such as graphics cards, printers, or mice. This required programmers to access the hardware directly, usually resulting in each application having its own set of device drivers for each hardware peripheral. Hardware manufacturers would release specifications to ensure device drivers for popular applications were available.[5]

Reserved device names[]

There are reserved device names in DOS that cannot be used as filenames regardless of extension; these are used to send application output to hardware peripherals. These restrictions also affect several Windows versions, in some cases causing crashes and security vulnerabilities.[6]

A partial list of these reserved names is: NUL:, COM1: or AUX:, COM2:, COM3:, COM4:, CON:, LPT1: or PRN:, LPT2:, LPT3:, and CLOCK$.[7]

Drive naming scheme[]

In DOS, drives are referred to by identifying letters. Standard practice is to reserve "A" and "B" for floppy drives. On systems with only one floppy drive DOS assigns both letters to the drive, prompting the user to swap disks as programs alternate access between them. This facilitates copying from floppy to floppy or having a program run from one floppy while accessing its data on another. Hard drives were originally assigned the letters "C" and "D". DOS could only support one active partition per drive. As support for more hard drives became available, this developed into first assigning a drive letter to each drive's active primary partition, then making a second pass over the drives to allocate letters to logical drives in the extended partition, then a third pass to give any other non-active primary partitions their names (where such additional partitions existed and contained a DOS-supported file system.) Lastly, DOS allocates letters for optical disc drives, RAM disks, and other hardware. Letter assignments usually occur in the order the drivers are loaded, but the drivers can instruct DOS to assign a different letter; drivers for network drives, for example, typically assign letters nearer the end of the alphabet.[8]

Because DOS applications use these drive letters directly (unlike the /dev directory in Unix-like systems), they can be disrupted by adding new hardware that needs a drive letter. An example is the addition of a new hard drive having a primary partition where a pre-existing hard drive contains logical drives in extended partitions; the new drive will be assigned a letter that was previously assigned to one of the extended partition logical drives. Moreover, even adding a new hard drive having only logical drives in an extended partition would still disrupt the letters of RAM disks and optical drives. This problem persisted through the 9x versions of Windows until NT, which preserves the letters of existing drives until the user changes them.[8]

Boot sequence[]

  • The boot sector on PC-compatible computers (MBR) is located at track zero. The boot sector on all disc devices are then in turn loaded into memory segment 0000:7C00, and if the sector contains the values "0x55 0xAA" at position 0x1FE, it's considered to be valid and is executed. On harddiscs each of the four partitions are searched for an active partition (bit-7=1 at pos 0x1BE+0x10*n).
  • The boot sector code loads the DOS-BIOS into segment 0000:0600; which is located in the file IO.SYS on MS-DOS systems.[9] In some cases the boot sector instead relocates itself into 0000:0600 and loads the partition boot code into 0000:7C00 and executes it.[10]
  • The DOS-BIOS will then load the DOS kernel, located in MSDOS.SYS on MS-DOS systems. In the DOS-kernel Windows 9x, the DOS-BIOS and kernel are combined in IO.SYS, and MSDOS.SYS is used as a text configuration file.
  • The kernel then loads the \CONFIG.SYS file to parse configuration parameters. The SHELL variable specifies the location of the shell which defaults to \COMMAND.COM.
  • The shell is loaded and executed.
  • The startup batch file AUTOEXEC.BAT is then run by the shell.[11][12] DR-DOS allows specification of the startup batch file through a parameter in the SHELL statement.[13][14]:392

The BIOS and kernel files loaded by the boot sector must be contiguous and be the first two directory entries.[15] As such, removing and adding this file is likely to render the media unbootable. It is, however, possible to replace the shell at will, a method that can be used to start the execution of dedicated applications faster.

In DR-DOS and PC-DOS IBMBIO.COM is used in place of IO.SYS and IBMDOS.COM in place of MSDOS.SYS.

On systems designed for PC-DOS v1.10 the signature 0x55 0xAA at position 0x1FE is not checked.[16]

Origins[]

IBM PC-DOS (and the separately sold MS-DOS, which was licensed therefrom), and its predecessor, 86-DOS, were loosely inspired by CP/M (Control Program / [for] Microcomputers) from Digital Research, which was the dominant disk operating system for 8-bit Intel 8080 and Zilog Z80 based microcomputers. However, PC-DOS never ran on less than an 8088 (16-bit).

When IBM introduced their first microcomputer in 1980, built with the Intel 8088 microprocessor, they needed an operating system. Seeking an 8088-compatible build of CP/M, IBM initially approached Microsoft CEO Bill Gates (possibly believing that Microsoft owned CP/M due to the Microsoft Z-80 SoftCard, which allowed CP/M to run on an Apple II[17]). IBM was sent to Digital Research, and a meeting was set up. However, the initial negotiations for the use of CP/M broke down—Digital Research wished to sell CP/M on a royalty basis, while IBM sought a single license, and to change the name to "PC DOS". DR founder Gary Kildall refused, and IBM withdrew.[17][18]

IBM again approached Bill Gates. Gates in turn approached Seattle Computer Products. There, programmer Tim Paterson had developed a variant of CP/M-80, intended as an internal product for testing SCP's new 16-bit Intel 8086 CPU card for the S-100 bus. The system was initially named "QDOS" (Quick and Dirty Operating System), before being made commercially available as 86-DOS. Microsoft purchased 86-DOS, allegedly for $50,000. This became Microsoft Disk Operating System, MS-DOS, introduced in 1981.[19]

Microsoft also licensed their system to multiple computer companies, who supplied MS-DOS for their own hardware, sometimes under their own names. Microsoft later required the use of the MS-DOS name, with the exception of the IBM variant. IBM continued to develop their version, PC DOS, for the IBM PC.[19] Digital Research became aware that an operating system similar to CP/M was being sold by IBM (under the same name that IBM insisted upon for CP/M), and threatened legal action. IBM responded by offering an agreement: they would give PC consumers a choice of PC DOS or CP/M-86, Kildall's 8086 version. Side-by-side, CP/M cost almost $200 more than PC DOS, and sales were low. CP/M faded, with MS-DOS and PC DOS becoming the marketed operating system for PCs and PC compatibles.[17]

Digital Research attempted to regain the market lost from CP/M-86; initially with DOS Plus, and later with DR-DOS (both compatible with both MS-DOS and CP/M-86 software). Digital Research was bought by Novell, and DR DOS became Novell DOS 7; later, it was part of Caldera Systems (under the names OpenDOS and DR DOS 7), Lineo, and DeviceLogics.

Microsoft and IBM later had a series of disagreements over two successor operating systems to DOS - Microsoft's Windows and IBM's OS/2.[20] They split development of their DOS systems as a result.[21] MS-DOS was partially transformed into Windows; the last version of PC DOS was PC DOS 2000, released in 1998.

The FreeDOS project began June 26, 1994, when Microsoft announced it would no longer sell or support MS-DOS. Jim Hall then posted a manifesto proposing the development of an open-source replacement. Within a few weeks, other programmers including Pat Villani and Tim Norman joined the project. A kernel, the command.com command line interpreter (shell) and core utilities were created by pooling code they had written or found available. There were several official pre-release distributions of FreeDOS before the FreeDOS 1.0 distribution was released on September 3, 2006. Made available under the GNU General Public License (GPL), FreeDOS does not require license fees or royalties.[22][23]

Decline[]

Early versions of Microsoft Windows were an application that ran on top of a separate version of DOS.[24] By the early 1990s, Windows saw heavy use on new DOS systems. With MS-Windows for Workgroups 3.11, DOS was almost reduced to the role of a boot loader for the Windows kernel; in 1995, MS-Windows 95 was bundled as a standalone operating system that did not require a separate DOS license. With Windows 95 (and Windows 98 and Me, that followed it), the MS-DOS kernel remains, but with Windows as the system's graphical shell. With Windows 95 and 98, but not ME, the MS-DOS component could be run without starting Windows.[25] With DOS no longer required to use Windows, the majority of PC users abandoned DOS in favor of Windows.

Continued use[]

Currently available DOS systems are FreeDOS, DR-DOS (and Enhanced DR-DOS), ROM-DOS, the Russian PTS-DOS, NX-DOS, Multiuser DOS (based on Digital Research's Concurrent DOS)[26], and others. Some computer manufacturers, including Dell and HP, sell computers with FreeDOS as the OEM operating system.[27][28] NX-DOS, is currently under development. It is 16-bit, real-time, networkable, bootable from a floppy, and has an incomplete USB driver. It dates back to 1992 as a personal project, and was released as GPL in 2005.[29]

Embedding[]

DOS' structure of accessing hardware directly makes it ideal for use in embedded devices. The final versions of DR-DOS are still aimed at this market.[30] ROM-DOS was used as the embedded system on the Canon PowerShot Pro 70.[31]

Emulation[]

File:DOSBox screenshot.png

DOSBox running on Windows Vista

Under Linux it is also possible to run copies of DOS and many of its clones under DOSEMU, a Linux-native virtual machine for running DOS programs at near native speed. There are a number of other emulators for running DOS under various versions of UNIX, even on non-x86 platforms, such as DOSBox.[32][33]

DOS emulators are gaining popularity among MS-Windows XP and MS-Windows Vista users, due to these systems being very incompatible with pure DOS. They can be used to run games or other DOS software. One of the most well-known is DOSBox, designed for legacy gaming (e.g. King's Quest, Doom) on modern operating systems.[24][32]

It is possible to run DOS applications under Microsoft Virtual PC, allowing better compatibility than DOS emulators. A legitimate version of MS-DOS can be installed which should allow all but the most stubborn applications to run.[34]

With Microsoft Windows[]

File:Command prompt on windows vista.png

cmd.exe, the DOS-styled command prompt used in Microsoft-NT-based Windows.

True 32-bit versions of Windows, starting with NT and including 2000, XP, and Vista, are not based upon DOS. These include the NT Virtual DOS Machine (NTVDM), which runs a modified version of MS-DOS 5 in a virtual machine. While DOS-based versions used the traditional COMMAND.COM for a command line interface, MS-Windows NT and its derivatives use cmd.exe, a descendant of OS/2's command interpreter which recognizes many DOS commands (although COMMAND.COM is still called and used when DOS .EXE files are run).

Versions[]

See Comparison of x86 DOS operating systems and Timeline of x86 DOS operating systems.

Software[]

File:Arachne VESA Mode.png

Arachne web browser

See also:DOS software, CUA (an aim to harmonise DOS applications user interfaces)

DOS was the dominant PC-Compatible platform and many notable programs were written for it. These included:

  • Lotus 1-2-3; a protected mode spreadsheet program that saw heavy use in corporate markets and has been credited with the success of the IBM PC[35]
  • WordPerfect; a word processor that is currently produced for the Windows platform
  • dBase; one of the earliest database programs
  • Telix; a modem communication program
  • Arachne; a 16-bit graphical DOS web browser
  • DJGPP, the 32-bit DPMI DOS port of gcc
  • 4DOS, a much improved replacement shell
  • Borland's integrated development environment, which included Turbo Pascal, Turbo BASIC, Turbo C, and Turbo Assembler
  • BBS hosting software PCBoard, RemoteAccess, Spitfire, Maximus, McBBS, and TAG
  • BASIC-language utilities BASICA and GW-BASIC
  • Numerous first-person shooter games: Wolfenstein 3D, a joint venture between id Software and Apogee Software (later 3D Realms); id Software's Doom and Quake; and 3D Realms' Duke Nukem 3D, Shadow Warrior, and Rise of the Triad. The first two 3D Realms' titles were built with the DOS-based Build engine, written by Ken Silverman and used for numerous DOS FPS games. R.O.T.T. (among others) was based upon a heavily-modified Wolfenstein 3D.

Ease of use[]

User interface[]

File:DirectoryListing1.png

Screenshot of a Windows command shell listing the files in a directory

DOS systems utilize a command line interface. Programs are started by entering their filename at the command prompt. DOS systems include several programs as system utilities, and provides additional commands that don't correspond to programs (internal commands).[36]

In an attempt to provide a more user-friendly environment, numerous software manufacturers wrote file management programs that provided users with menu- and/or icon-based interfaces. Microsoft Windows is a notable example, eventually resulting in Microsoft Windows 9x becoming a self-contained program loader, and replacing DOS as the most-used PC-compatible program loader. Text user interface programs included Norton Commander, Dos Navigator, Volkov Commander, Quarterdesk DESQview, and SideKick. Graphical user interface programs included Digital Research's Graphical Environment Manager (originally written for CP/M) and GEOS.

Eventually, the manufacturers of major DOS systems began to include their own environment managers. MS-DOS/IBM DOS 4 included DOS Shell;[37] DR-DOS 5, released the next year, included ViewMAX, based upon GEM.[38]

Multitasking[]

By its original design, DOS was a single task operating system. MS and PC DOS would introduce task switching with DOSShell,[39] and DR-DOS would include it with DR-DOS 6, via the TaskMAX command.[14]:320–324 MS and PC DOS never had a multitasking capability;[40] DR-DOS had the capability with DR-DOS 7 (assuming DR-DOS was running with DPMI enabled).[41] Programs such as VMIX (shareware) or DesqView (commercial) could multitask even on an 8088, which did not have hardware support for multitasking due to its lack of protected mode.

Limitations[]

Several limitations plague the DOS architecture. The original 8088 microprocessor could only address 1 megabyte of physical RAM. With additional hardware devices being mapped into this range, the highest amount of available memory was 640 kilobytes, known as conventional memory. Due to DOS' structure, this was assumed to be the maximum, and DOS could not address more than this. An early workaround was expanded memory; later, extended memory was developed with the 80286. While these provided usable memory to applications, they still had to start in conventional memory, thereby using part of the existing 640 KB. With the 80386 microprocessor's redesigned protected mode, DOS extenders and the DOS Protected Mode Interface were able to provide additional memory to applications, as well as multitasking. [42][43]

DOS also has an upper limit to the size of hard disk partitions. This has two causes. First, many DOS-type systems never had support for any file system newer than FAT16, which, by design, does not allow partitions larger than 2.1 gigabytes.[44] Additionally, DOS accesses the hard disk by calling Interrupt 13, which utilizes the cylinder-head-sector system of mapping the disk. Under this system, only 8 gigabytes are visible to the operating system.[45] Newer operating systems accomplished disk access via software means, e.g. 32-bit disk access.

Using FAT16 (and FAT12 for floppy disks) required use of the 8.3 filename. Filenames in DOS can not be longer than eight characters, and the filename extension cannot be longer than three. Win95's patented VFAT hack worked around this in a unique way.

See also[]

  • COMMAND.COM, the command line interpreter for DOS and MS-Windows 9x
  • MS-DOS API
  • VGA compatible text mode, the base of DOS’s TUI on IBM PC compatibles
  • Timeline of x86 DOS operating systems

References[]

  1. Murdock, Everett (1988). DOS the Easy Way. EasyWay Downloadable Books. ISBN 0923178007. 
  2. See MS-DOS
  3. Hyde, Randall (1996-09-30). "CHAPTER EIGHTEEN: RESIDENT PROGRAMS (Part 3)". The Art of Assembly Language Programming. Retrieved 2008-09-02. 
  4. "Batch File Help". computerhope.com. Retrieved 2008-09-10. 
  5. Matczynski, Michael. "ZINGTECH - Guide to the New Game Programmer". Retrieved 2008-09-02. 
  6. "Microsoft Windows MS DOS Device Name DoS Vulnerability". Retrieved 2008-09-02. 
  7. "DOS device names definition". PC Magazine. Retrieved 2008-09-02. 
  8. 8.0 8.1 "Drive Letter Assignment and Choosing Primary vs. Logical Partitions". The PC Guide. 2007-05-17. Retrieved 2008-09-02. 
  9. "Reverse-Engineering DOS 1.0 – Part 1: The Boot Sector « pagetable.com".  090912 pagetable.com
  10. "The Master Boot Record (MBR) and What it Does".  090912 dewassoc.com
  11. "CONFIG.SYS Commands".  090913 academic.evergreen.edu
  12. Kozierok, Charles (2001). "The DOS Boot Process". The PC Guide. Retrieved 2008-09-02. 
  13. "DR-DOS 7.02 User Guide chapter 9". Caldera Systems. 1998. Retrieved 2009-09-15. 
  14. 14.0 14.1 DR DOS 6.0 User Guide. Digital Research. 1991. pp. 320–324. 
  15. "misc.txt".  090912 arl.wustl.edu
  16. The 55 AA signature is not present at 0x01FE in PC-DOS v1.10 boot image.
  17. 17.0 17.1 17.2 Template:Cite interview
  18. Bove, Tony (2005). Just Say No to Microsoft. No Starch Press. p. 9–11. ISBN 159327064X. 
  19. 19.0 19.1 Bellis, Mary. "The Unusual History of MS-DOS The Microsoft Operating System". Retrieved 2008-09-02. 
  20. Pollack, Andrew (1991-07-27). "Microsoft Widens Its Split With I.B.M. Over Software". New York Times. Retrieved 2008-09-02. 
  21. Brinkley, Joel (1999-05-28). "I.B.M. Executive Describes Price Pressure by Microsoft". New York Times. Retrieved 2008-09-02. 
  22. Jim Hall (2002-03-25). "The past, present, and future of the FreeDOS Project". Retrieved 2008-06-14. 
  23. Hall, Jim (September 23, 2006). "History of FreeDOS". freedos.org. Retrieved 2007-05-28. 
  24. 24.0 24.1 James Bannan (2006-10-13). "HOW TO: Coax retro DOS games to play on Vista". Retrieved 2008-07-03. 
  25. "Finding The DOS In Windows 95". Smart Computing. March 1996. Retrieved 2008-07-12. 
  26. http://www.conctrls.com/CCInews.html
  27. Hall, Jim (2007-07-13). "Jim Hall". Retrieved 2008-06-12. 
  28. "Dell PCs Featuring FreeDOS". Retrieved 2008-06-14. 
  29. "GPL'd DOS workalike adds features". 2007-04-01. Retrieved 2008-06-01. 
  30. "DR DOS Embedded DOS". Retrieved 2008-09-26. 
  31. "Datalight DOS Selected for Canon's New Line of Digital Still Cameras". Business Wire. 1999-08-24. Retrieved 2008-09-26. 
  32. 32.0 32.1 "DOSBox Information". Retrieved 2008-05-18. 
  33. "DOSEMU Home". 2007-05-05. Retrieved 2008-07-03. 
  34. "DOS Games on Vista". 2008-03-11. Retrieved 2008-09-02. 
  35. Darrow, Barbara (1 February, 2002). "Whatever Happened To Lotus 1-2-3?". Retrieved 2008-07-12. 
  36. Murdock, Everett. DOS the Easy Way. EasyWay Downloadable Books. pp. 7–12. ISBN 0923178023. 
  37. Murdock, Everett. DOS the Easy Way. EasyWay Downloadable Books. pp. 71. ISBN 0923178023. 
  38. Dvorak, John; Nick Anis (1991). Dvorak's Guide to DOS and PC Performance. Osborne McGraw-Hill. pp. 442–444. 
  39. Murdock, Everett. DOS the Easy Way. EasyWay Downloadable Books. pp. 83. ISBN 0923178023. 
  40. Perry, Greg; Jill Freeze (2003). Sams Teach Yourself Windows XP Computer Basics All in One. Sams Publishing. pp. 445. ISBN 0672325357. 
  41. "Chapter 13 Multitasking and Task Switching". Caldera DR-DOS 7.02 User Guide. Caldera Systems. 1998. Retrieved 2008-09-12. 
  42. Korzeniowski, Paul (May 1990). "DOS: still thriving after all these years". Software Magazine (Findarticles.com). Retrieved 2008-07-10. 
  43. Duncan, Ray (1991). Extending DOS: A Programmer's Guide to Protected-Mode DOS (2 ed.). Addison-Wesley. ISBN 0201567989. 
  44. Mueller, Scott (2003). Upgrading and Repairing PCs. Que Publishing. p. 812. ISBN 0789729741. 
  45. "The Int 13 Interface". The PC Guide. storagereview.com. Retrieved 2008-07-10. 
Notes
  • IBM Corp., IBM, (January 1984). “IBM DOS Release 2.10 Cloth bound retail hard board box”. 1st edition. IBM Corp. Item Number. 6183946
  • IBM Corp., IBM, (January 1984). “Disk Operating System User's guide (DOS Release 2.10)”. 1st edition. Microsoft Corp. (100 pages including colour illustrations) Item Number. 6183947
  • IBM Corp., IBM, (January 1984). “Disk Operating System Manual (DOS Release 2.10)”. 1st edition. Microsoft Corp. (574 looseleaf pages in 3 ring folder) Item No. 6183940
  • IBM Corp., IBM, (May 1984). “BASIC HANDBOOK General Programming Information (BASIC Release 3.0)”. 3rd edition. IBM Corp. (127 pages) Item Number 6361129
  • IBM Corp., IBM, (May 1984). “BASIC Reference (BASIC Release 3.0)”. 3rd edition. IBM Corp. Item Number 6361134

External links[]

Advertisement