Інсталювати Steam
увійти
|
мова
简体中文 (спрощена китайська)
繁體中文 (традиційна китайська)
日本語 (японська)
한국어 (корейська)
ไทย (тайська)
Български (болгарська)
Čeština (чеська)
Dansk (данська)
Deutsch (німецька)
English (англійська)
Español - España (іспанська — Іспанія)
Español - Latinoamérica (іспанська — Латинська Америка)
Ελληνικά (грецька)
Français (французька)
Italiano (італійська)
Bahasa Indonesia (індонезійська)
Magyar (угорська)
Nederlands (нідерландська)
Norsk (норвезька)
Polski (польська)
Português (португальська — Португалія)
Português - Brasil (португальська — Бразилія)
Română (румунська)
Русский (російська)
Suomi (фінська)
Svenska (шведська)
Türkçe (турецька)
Tiếng Việt (в’єтнамська)
Повідомити про проблему з перекладом
Also why do you want to know how DOS works? Nobody uses DOS anymore.
Matejcraft100_yt,
When you say you are learning "DOS commands" what exactly are you referring to? If you are talking about MS-DOS, the actual operating system which predates Windows, then this would be very strange, as that OS is indeed long obsolete. If you are simply talking about learning Windows command shell scripting, aka CMD commands, aka batch scripting, then this makes much more sense; however you don't need any sort of emulated environment to learn this. You can just fire up the Windows CLI/ "command prompt" either from the Start menu or from running cmd.exe, and just start directly entering commands (note that there are slight variations on the particular commands supported, depending on your version of Windows) and you can use any decent text/code editor for writing your command scripts. Simple.
(Note that you can also use the newer, and much more powerful "PowerShell" command line to run traditional CMD commands, but there is extra syntax involved, so it's a bit unwieldy).
If you really do in fact--for some reason--want a DOS-emulated environment, along with virtualized floppy disks, then I would recommend installing and running DOSBox, as this is much easier to configure and use than trying to set it up from scratch using VirtualBox.
If you want to go even deeper, simulating what DOS would have been like running on an old 8088 processor (like from a classic IBM XT PC) then there is a new emulator on the scene, PCem: https://devtidbits.com/2017/08/25/pcem-emulate-the-tandy-1000-ms-dos-on-a-8088/
Give it a try.
FDISK is the DOS tool for partitioning hard drives. If you don't know, a "partition" is basically just a way of dividing up the hard drive into multiple "virtual disks". But even if you don't want more than one, you still need at least one partition because of how the system boots. Marking the partition active tells the BIOS that it should try to boot from that partition.
FORMAT is the DOS tool for creating the actual file system (all the data structures that keep track of files on the disk). The /S part specifies to create a "system" disk, which basically means installing a boot sector and the core DOS components (for MS-DOS these are MSDOS.SYS, IO.SYS, and COMMAND.COM, but only COMMAND.COM is visible; the others are hidden) to make the disk bootable.
However, when I say "minimal". I mean really minimal. You won't be able to do anything except use the commands built into COMMAND.COM [1].
[1] https://en.wikipedia.org/wiki/COMMAND.COM#Internal_commands
Yeah, those are external commands. DOSBox is missing a few of them, primarily ones that aren't critical or that appeared in much later versions of DOS. If you're motivated, you can incorporate those commands back into DOSBox. 4-DOS is the answer. Follow the instructions discussed here: https://www.vogons.org/viewtopic.php?f=31&t=55390