Home Common Problem What operating system is ms-dos?

What operating system is ms-dos?

Dec 25, 2020 am 11:22 AM
operating system ms-dos

ms-dos refers to Microsoft Disk Operating System, which is a single-user single-task operating system. MS-DOS adopts a module structure, which consists of five parts: BIOS module, IO.SYS module, MSDOS.SYS module, COMMAND.COM module and boot program in ROM.

What operating system is ms-dos?

#The operating environment of this article: windows10 system, thinkpad t480 computer.

MS-DOS (Microsoft Disk Operating System) is a disk operating system provided by Microsoft Corporation of the United States.

Single-user single-task OS means that only one user is allowed to log on to the computer, and only the user program is allowed to run as a task. MS-DOS is a single-user single-task operating system.

MS-DOS users can control system configuration by editing two system files located in the root directory of the boot disk. They are CONFIG.SYS and AUTOEXEC.BAT. IO.SYS will view CONFIG .SYS to load the specified hardware driver, and then automatically execute the batch instructions contained in AUTOEXEC.BAT.

MS-DOS generally uses the command line interface to accept user instructions. However, in later versions of MS-DOS, DOS programs can also enter graphics mode by calling the corresponding DOS interrupt, that is, graphics under DOS. interface program.

Earlier versions of MS-DOS did not support FAT32, long file names, and large hard disks. Starting from MS-DOS 7.0, especially MS-DOS 7.10 version, these are fully supported.

Composition:

MS-DOS adopts a module structure, which consists of five parts: BIOS module in ROM, IO.SYS module, MSDOS.SYS module, COMMAND .COM modules and bootloaders.

Basic input and output module

There is a read-only internal memory (foreign language abbreviation: ROM) chip on the personal computer motherboard, which contains the system self-test program , complementary metal oxide semiconductor (CMOS) setup program and basic input and output program (foreign language abbreviation: BIOS). BIOS is a set of programs and parameter tables. The program part is a set of drivers that can be called through interrupts. The parameters give the addresses and parameters of the peripherals. BIOS is the interface between computer hardware and operating system, through which the operating system manages computer hardware resources.

IO.SYS module

IO.SYS is the interface program between MS-DOS and ROMBIOS. It completes the management of system devices together with ROM BIOS.

MSDOS.SYS

MSDOS. SYS is used to implement file management, including file management, directory management, memory management and other functions. It implements the program-level interface between users and MS-DOS in the form of function calls.

COMMAND.COM

The main function of COMMAND.COM is to receive, recognize, interpret and execute MS-DOS commands entered by users from the keyboard.

Boot program

The boot program is also called "boot record". Its function is to check whether there are two system files on the current disk. If there are system files, DOS The system loads memory from disk. A system disk should contain: boot record, IO. SYS, MSDOS. Modules such as SYS and COMMAND.COM.

Related recommendations: "Programming Video"

The above is the detailed content of What operating system is ms-dos?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1268
29
C# Tutorial
1242
24
What is the main purpose of Linux? What is the main purpose of Linux? Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

How to run sublime after writing the code How to run sublime after writing the code Apr 16, 2025 am 08:51 AM

There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.

Is the vscode extension malicious? Is the vscode extension malicious? Apr 15, 2025 pm 07:57 PM

VS Code extensions pose malicious risks, such as hiding malicious code, exploiting vulnerabilities, and masturbating as legitimate extensions. Methods to identify malicious extensions include: checking publishers, reading comments, checking code, and installing with caution. Security measures also include: security awareness, good habits, regular updates and antivirus software.

How to run programs in terminal vscode How to run programs in terminal vscode Apr 15, 2025 pm 06:42 PM

In VS Code, you can run the program in the terminal through the following steps: Prepare the code and open the integrated terminal to ensure that the code directory is consistent with the terminal working directory. Select the run command according to the programming language (such as Python's python your_file_name.py) to check whether it runs successfully and resolve errors. Use the debugger to improve debugging efficiency.

vscode cannot install extension vscode cannot install extension Apr 15, 2025 pm 07:18 PM

The reasons for the installation of VS Code extensions may be: network instability, insufficient permissions, system compatibility issues, VS Code version is too old, antivirus software or firewall interference. By checking network connections, permissions, log files, updating VS Code, disabling security software, and restarting VS Code or computers, you can gradually troubleshoot and resolve issues.

git software installation git software installation Apr 17, 2025 am 11:57 AM

Installing Git software includes the following steps: Download the installation package and run the installation package to verify the installation configuration Git installation Git Bash (Windows only)

Can vscode compare two files Can vscode compare two files Apr 15, 2025 pm 08:15 PM

Yes, VS Code supports file comparison, providing multiple methods, including using context menus, shortcut keys, and support for advanced operations such as comparing different branches or remote files.

How to set important Git configuration global properties How to set important Git configuration global properties Apr 17, 2025 pm 12:21 PM

There are many ways to customize a development environment, but the global Git configuration file is one that is most likely to be used for custom settings such as usernames, emails, preferred text editors, and remote branches. Here are the key things you need to know about global Git configuration files.