2
0
mirror of https://github.com/LCTT/TranslateProject.git synced 2025-03-24 02:20:09 +08:00

Merge pull request from qhwdw/master

How to run DOS programs in Linux
This commit is contained in:
Ezio 2017-10-31 14:39:37 +08:00 committed by GitHub
commit d5a6ab6b10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 175 additions and 176 deletions

View File

@ -1,176 +0,0 @@
Translating by qhwdw
How to run DOS programs in Linux
============================================================
### QEMU and FreeDOS make it easy to run old DOS programs under Linux.
[![photo of Jim Hall](https://opensource.com/sites/default/files/styles/byline_thumbnail/public/pictures/jimhall1.jpg?itok=ALPmHWAH "Jim Hall")][22]  19 Oct 2017 [Jim Hall][23] [Feed][17] 20[up][15] [13 comments][24]
![How to run DOS programs in Linux](https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/code_computer_development_programming.png?itok=4OM29-82 "How to run DOS programs in Linux")
Image by : opensource.com
The classic DOS operating system supported a lot of great applications: word processors, spreadsheets, games, and other programs. Just because an application is old doesn't mean it's no longer useful.
There are many reasons to run an old DOS application today. Maybe to extract a report from a legacy business application. Or to play a classic DOS game. Or just because you are curious about "classic computing." You don't need to dual-boot your system to run DOS programs. Instead, you can run them right inside Linux with the help of a PC emulator and [FreeDOS][18].
FreeDOS is a complete, free, DOS-compatible operating system that you can use to play classic DOS games, run legacy business software, or develop embedded systems. Any program that works on MS-DOS should also run on FreeDOS.
In the "old days," you installed DOS as the sole operating system on a computer. These days, it's much easier to install DOS in a virtual machine running under Linux. [QEMU][19] (short for Quick EMUlator) is an open source software virtual machine system that can run DOS as a "guest" operating system Linux. Most popular Linux systems include QEMU by default.
Here are four easy steps to run old DOS applications under Linux by using QEMU and FreeDOS.
### Step 1: Set up a virtual disk
You'll need a place to install FreeDOS inside QEMU, and for that you'll need a virtual **C:** drive. In DOS, drives are assigned with letters—**A:** and **B:** are the first and second floppy disk drives and **C:** is the first hard drive. Other media, including other hard drives or CD-ROM drives, are assigned **D:**, **E:**, and so on.
Under QEMU, virtual drives are image files. To initialize a file that you can use as a virtual **C: **drive, use the **qemu-img** command. To create an image file that's about 200MB, type this:
```
qemu-img create dos.img 200M
```
Compared to modern computing, 200MB may seem small, but in the early 1990s, 200MB was pretty big. That's more than enough to install and run DOS.
### Step 2: QEMU options
Unlike PC emulator systems like VMware or VirtualBox, you need to "build" your virtual system by instructing QEMU to add each component of the virtual machine. Although this may seem laborious, it's really not that hard. Here are the parameters I use to boot FreeDOS inside QEMU:
| | |
|:-- |:--|
| **qemu-system-i386** | QEMU can emulate several different systems, but to boot DOS, we'll need to have an Intel-compatible CPU. For that, start QEMU with the i386 command. |
| **-m 16** | I like to define a virtual machine with 16MB of memory. That may seem small, but DOS doesn't require much memory to do its work. When DOS was king, computers with 16MB or even 8MB were quite common. |
| **-k en-us** | Technically, the **-k** option isn't necessary, because QEMU will set the virtual keyboard to match your actual keyboard (in my case, that's English in the standard U.S. layout). But I like to specify it anyway. |
| **-rtc base=localtime** | Every classic PC provides a real time clock (RTC) so the system can keep track of time. I find it's easiest to simply set the virtual RTC to match your local time. |
| **-soundhw sb16,adlib,pcspk** | If you need sound, especially for games, I prefer to define QEMU with SoundBlaster16 sound hardware and AdLib Music support. SoundBlaster16 and AdLib were the most common sound hardware in the DOS era. Some older programs may use the PC speaker for sound; QEMU can also emulate this. |
| **-device cirrus-vga** | To use graphics, I like to emulate a simple VGA video card. The Cirrus VGA card was a common graphics card at the time, and QEMU can emulate it. |
| **-display gtk** | For the virtual display, I set QEMU to use the GTK toolkit, which puts the virtual system in its own window and provides a simple menu to control the virtual machine. |
| **-boot order=** | You can tell QEMU to boot the virtual machine from a variety of sources. To boot from the floppy drive (typically **A:** on DOS machines) specify **order=a**. To boot from the first hard drive (usually called **C:**) use **order=c**. Or to boot from a CD-ROM drive (often assigned **D:** by DOS) use **order=d**. You can combine letters to specify a specific boot preference, such as **order=dc** to first use the CD-ROM drive, then the hard drive if the CD-ROM drive does not contain bootable media. |
### Step 3: Boot and install FreeDOS
Now that QEMU is set up to run a virtual system, we need a version of DOS to install and boot inside that virtual computer. FreeDOS makes this easy. The latest version is FreeDOS 1.2, released in December 2016.
Download the FreeDOS 1.2 distribution from the [FreeDOS website][20]. The FreeDOS 1.2 CD-ROM "standard" installer (**FD12CD.iso**) will work great for QEMU, so I recommend that version.
Installing FreeDOS is simple. First, tell QEMU to use the CD-ROM image and to boot from that. Remember that the **C:** drive is the first hard drive, so the CD-ROM will show up as the **D:** drive.
```
qemu-system-i386 -m 16 -k en-us -rtc base=localtime -soundhw sb16,adlib -device cirrus-vga -display gtk -hda dos.img -cdrom FD12CD.iso -boot order=d
```
Just follow the prompts, and you'll have FreeDOS installed within minutes.
### [install1a.png][6]
![Starting FreeDOS installation](https://opensource.com/sites/default/files/u128651/install1a.png "Starting FreeDOS installation")
### [install2_0.png][7]
![Select your keyboard layout](https://opensource.com/sites/default/files/u128651/install2_0.png "Select your keyboard layout")
### [install3.png][8]
![Selecting which packages to install](https://opensource.com/sites/default/files/u128651/install3.png "Selecting which packages to install")
### [install4.png][9]
![Rebooting after installation](https://opensource.com/sites/default/files/u128651/install4.png "Rebooting after installation")
After you've finished, exit QEMU by closing the window.
### Step 4: Install and run your DOS application
Once you have installed FreeDOS, you can run different DOS applications inside QEMU. You can find old DOS programs online through various archives or other [websites][21].
QEMU provides an easy way to access local files on Linux. Let's say you want to share the **dosfiles/** folder with QEMU. Simply tell QEMU to use the folder as a virtual FAT drive by using the **-drive** option. QEMU will access this folder as though it were a hard drive.
```
-drive file=fat:rw:dosfiles/
```
Now, start QEMU with your regular options, plus the extra virtual FAT drive:
```
qemu-system-i386 -m 16 -k en-us -rtc base=localtime -soundhw sb16,adlib -device cirrus-vga -display gtk -hda dos.img -drive file=fat:rw:dosfiles/ -boot order=c
```
Once you're booted in FreeDOS, any files you save to the **D:** drive will be saved to the **dosfiles/** folder on Linux. This makes reading the files directly from Linux easy; however, be careful not to change the **dosfiles/** folder from Linux after starting QEMU. QEMU builds a virtual FAT table once, when you start QEMU. If you add or delete files in **dosfiles/** after you start QEMU, the emulator may become confused.
I use QEMU like this to run my favorite DOS programs, like the As-Easy-As spreadsheet program. This was a popular spreadsheet application from the 1980s and 1990s, which does the same job that Microsoft Excel and LibreOffice Calc fulfill today, or that the more expensive Lotus 1-2-3 spreadsheet did back in the day. As-Easy-As and Lotus 1-2-3 both saved data as WKS files, which newer versions of Microsoft Excel cannot read, but which LibreOffice Calc may still support, depending on compatibility.
### [aseasy-regress1.png][10]
![As-Easy-As spreadsheet program](https://opensource.com/sites/default/files/u128651/aseasy-regress1.png "As-Easy-As spreadsheet program")
As-Easy-As spreadsheet program
I also like to boot FreeDOS under QEMU to play some of my favorite DOS games, like the original Doom. These old games are still fun to play, and they all run great under QEMU.
### [qemu-doom.png][11]
![Doom](https://opensource.com/sites/default/files/u128651/qemu-doom.png "Doom")
Doom
### [qemu-heretic.png][12]
![Heretic](https://opensource.com/sites/default/files/u128651/qemu-heretic.png "Heretic")
Heretic
### [qemu-jill.png][13]
![Jill of the Jungle](https://opensource.com/sites/default/files/u128651/qemu-jill.png "Jill of the Jungle")
Jill of the Jungle
### [qemu-keen.png][14]
![Commander Keen](https://opensource.com/sites/default/files/u128651/qemu-keen.png "Commander Keen")
Commander Keen
QEMU and FreeDOS make it easy to run old DOS programs under Linux. Once you've set up QEMU as the virtual machine emulator and installed FreeDOS, you should be all set to run your favorite classic DOS programs from Linux.
_All images courtesy of [FreeDOS.org][16]._
--------------------------------------------------------------------------------
作者简介:
Jim Hall - Jim Hall is an open source software developer and advocate, probably best known as the founder and project coordinator for FreeDOS. Jim is also very active in the usability of open source software, as a mentor for usability testing in GNOME Outreachy, and as an occasional adjunct professor teaching a course on the Usability of Open Source Software. From 2016 to 2017, Jim served as a director on the GNOME Foundation Board of Directors. At work, Jim is Chief Information Officer in local...
--------------------------------------------------------------------------------
via: https://opensource.com/article/17/10/run-dos-applications-linux
作者:[ Jim Hall ][a]
译者:[译者ID](https://github.com/译者ID)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]:https://opensource.com/users/jim-hall
[1]:https://opensource.com/resources/what-is-linux?intcmp=70160000000h1jYAAQ&utm_source=intcallout&utm_campaign=linuxcontent
[2]:https://opensource.com/resources/what-are-linux-containers?intcmp=70160000000h1jYAAQ&utm_source=intcallout&utm_campaign=linuxcontent
[3]:https://developers.redhat.com/promotions/linux-cheatsheet/?intcmp=70160000000h1jYAAQ&utm_source=intcallout&utm_campaign=linuxcontent
[4]:https://developers.redhat.com/cheat-sheet/advanced-linux-commands-cheatsheet?intcmp=70160000000h1jYAAQ&utm_source=intcallout&utm_campaign=linuxcontent
[5]:https://opensource.com/tags/linux?intcmp=70160000000h1jYAAQ&utm_source=intcallout&utm_campaign=linuxcontent
[6]:https://opensource.com/file/374821
[7]:https://opensource.com/file/374771
[8]:https://opensource.com/file/374776
[9]:https://opensource.com/file/374781
[10]:https://opensource.com/file/374761
[11]:https://opensource.com/file/374786
[12]:https://opensource.com/file/374791
[13]:https://opensource.com/file/374796
[14]:https://opensource.com/file/374801
[15]:https://opensource.com/article/17/10/run-dos-applications-linux?rate=STdDX4LLLyyllTxAOD-CdfSwrZQ9D3FNqJTpMGE7v_8
[16]:http://www.freedos.org/
[17]:https://opensource.com/user/126046/feed
[18]:http://www.freedos.org/
[19]:https://www.qemu.org/
[20]:http://www.freedos.org/
[21]:http://www.freedos.org/links/
[22]:https://opensource.com/users/jim-hall
[23]:https://opensource.com/users/jim-hall
[24]:https://opensource.com/article/17/10/run-dos-applications-linux#comments

View File

@ -0,0 +1,175 @@
怎么在 Linux 中运行 DOS 程序
============================================================
### QEMU 和 FreeDOS 可以让它很容易地在 Linux 中运行老的 DOS 程序
[![photo of Jim Hall](https://opensource.com/sites/default/files/styles/byline_thumbnail/public/pictures/jimhall1.jpg?itok=ALPmHWAH "Jim Hall")][22]  19 Oct 2017 [Jim Hall][23] [Feed][17] 20[up][15] [13 comments][24]
![How to run DOS programs in Linux](https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/code_computer_development_programming.png?itok=4OM29-82 "How to run DOS programs in Linux")
Image by : opensource.com
传统的 DOS 操作系统支持的许多非常优秀的应用程序: 文字处理,电子表格,游戏,和其它的程序。正因为一个应用程序太老了,意味着它不再使用了。
今天这里有很多理由去运行一个旧的 DOS 应用程序。或许是从一个遗留的业务应用程序中提取一个报告。或者是玩一个经典的 DOS 游戏。或者因为你对“传统计算机的动作”很好奇。你不需要去双引导你的系统去运行 DOS 程序。而是,你可以在 Linux 中在一个 PC 仿真程序和 [FreeDOS][18]的帮助下去正确地运行它们。
FreeDOS 是一个完整的、免费的、DOS 兼容的操作系统,你可以用它来玩经典的游戏、运行传统业务软件,或者开发嵌入式系统。工作在 MS-DOS 中的任何程序也可以运行在 FreeDOS 中。
以前,你安装的 DOS 作为一台计算机上的独占的操作系统。 现在, 它可以很容易地安装到 Linux 上运行一台虚拟机中。 [QEMU][19] (快速仿真程序的缩写) 是一个开源的虚拟机软件, 它可以在 Linux 中运行一个“guest”操作系统来运行 DOS。许多流行的 Linux 系统都缺少包含 QEMU 。
通过以下四步,很容易地在 Linux 下通过使用 QEMU 和 FreeDOS 去运行一个老的 DOS 程序。
### 第1步设置一个虚拟磁盘
你需要一个在 QEMU 中安装 FreeDOS 的位置, 以及你需要一个虚拟的 C:驱动器。在 DOS 中, 字母—**A:** 和 **B:** 是分配给第一和第二个软盘驱动器的,而 **C:** 是第一个硬盘驱动器。其它介质,包括其它硬盘驱动器和 CD-ROM 驱动器,是依次分配 **D:****E:** 等等。
在 QEMU 中,虚拟磁盘是一个镜像文件。去初始化一个用于 **C: **驱动器的文件,使用 **qemu-img** 命令。去创建一个大约 200 MB 的镜像文件,可以这样输入:
```
qemu-img create dos.img 200M
```
与现代计算机相比, 200 MB 看起来非常小但是早在1990年代 200 MB 是非常大的。它足够安装和运行 DOS。
### 第2步 QEMU 选项
与 PC 仿真系统 VMware 或 VirtualBox 不同,你需要通过 QEMU 命令去增加每个虚拟机的组件来 “build” 你的虚拟系统 。虽然,这可能看起来很费力,但它实际并不困难。这些是我们在 QEMU 中用于去引导 FreeDOS 的参数:
| | |
|:-- |:--|
| **qemu-system-i386** | QEMU 可以仿真几种不同的系统,但是去引导到 DOS我们需要有一个 Intel 兼容的 CPU。 以便于使用 i386 命令启动 QEMU。 |
| **-m 16** | 我喜欢定义一个使用 16 MB 内存的虚拟机。它看起来很小,但是 DOS 工作不需要很多的内存。在一个巨型的 DOS 中,计算机使用 16 MB 或者 8 MB 是非常普遍的。 |
| **-k en-us** | 一般情况下, 这个 **-k** 选项是不需要的,因为 QEMU 会设置虚拟键盘去匹配你的真实键盘(在我的例子中, 它是标准的US布局的英语键盘。但是我还是喜欢去指定它。 |
| **-rtc base=localtime** | 每个传统的 PC 设备有一个实时时钟 (RTC) 以便于系统可以保持跟踪时间。我找到一个简单的方法去设置虚拟 RTC 去匹配你的本地时间。 |
| **-soundhw sb16,adlib,pcspk** | 如果你需要声音, 尤其是为了游戏,我更喜欢去使用 SoundBlaster16 声音硬件和 AdLib 音乐支持去定义 QEMU 。SoundBlaster16 和 AdLib 是在 DOS 时代非常普通的声音硬件。一些老的程序可以为声音使用 PC 喇叭; QEMU 也可以仿真这个。 |
| **-device cirrus-vga** | 去使用图像,我喜欢去仿真一个简单的 VGA 视频卡。Cirrus VGA 卡是那时比较普遍的图形卡, 而且 QEMU 可以仿真它。 |
| **-display gtk** | 对于虚拟显示,我设置 QEMU 去使用 GTK toolkit它可以放虚拟系统到它自己的窗口内并且提供一个简单的菜单去控制虚拟机。 |
| **-boot order=** | 你可以告诉 QEMU 从多种源引导虚拟机。从软盘驱动器引导 (在 DOS 机器中一般情况下是 **A:** ) 指定 **order=a**。 从每一个硬盘驱动器引导(一般称为 **C:**) 使用 **order=c**。 或者去从一个 CD-ROM 驱动器 (在 DOS 中经常分配 **D:** ) 使用 **order=d**。 你可以使用组合字母去指定一个特定的引导顺序, 比如 **order=dc** 去第一个使用 CD-ROM 驱动器,如果 CD-ROM 驱动器中没有引导介质,然后使用硬盘驱动器。 |
### 第3步 引导和安装 FreeDOS
现在 QEMU 已经设置为运行一个虚拟机,我们需要一个 DOS 版本去在那台虚拟机中安装和引导。 FreeDOS 做这个很容易。它的最新版本是 FreeDOS 1.2 发行于 2016年12月。
从 [FreeDOS website][20]上下载 FreeDOS 1.2 的发行版。 FreeDOS 1.2 CD-ROM “standard” 安装器 (**FD12CD.iso**) 可以很好地在 QEMU 上运行,因此,我推荐使用这个版本。
安装 FreeDOS 很简单。首先,告诉 QEMU 去使用的 CD-ROM image 和从哪里引导它。 记住,第一个硬盘驱动器是 **C:** 驱动器,因此, CD-ROM 将以 **D:** 驱动器出现。
```
qemu-system-i386 -m 16 -k en-us -rtc base=localtime -soundhw sb16,adlib -device cirrus-vga -display gtk -hda dos.img -cdrom FD12CD.iso -boot order=d
```
正如下面的提示,你将在几分钟内安装完成 FreeDOS 。
### [install1a.png][6]
![Starting FreeDOS installation](https://opensource.com/sites/default/files/u128651/install1a.png "Starting FreeDOS installation")
### [install2_0.png][7]
![Select your keyboard layout](https://opensource.com/sites/default/files/u128651/install2_0.png "Select your keyboard layout")
### [install3.png][8]
![Selecting which packages to install](https://opensource.com/sites/default/files/u128651/install3.png "Selecting which packages to install")
### [install4.png][9]
![Rebooting after installation](https://opensource.com/sites/default/files/u128651/install4.png "Rebooting after installation")
在你安装完成之后,关闭窗口退出 QEMU。
### Step 4: Install and run your DOS application
一旦安装完 FreeDOS你可以在 QEMU 中运行不同的 DOS 应用程序。你可以在线上通过各种档案文件或其它[网站][21]找到老的 DOS 程序。
QEMU 提供了一个在 Linux 上访问本地文件的简单方法。比如说,想去用 QEMU 共享 **dosfiles/** 文件夹。 通过使用 **-drive** 选项,简单地告诉 QEMU 去使用这个文件夹作为 FAT 驱动器。 QEMU 将通过一个硬盘驱动器去访问这个文件夹。
```
-drive file=fat:rw:dosfiles/
```
现在,你可以使用你的合法的选项去启动 QEMU加上一个外部的虚拟 FAT 驱动器:
```
qemu-system-i386 -m 16 -k en-us -rtc base=localtime -soundhw sb16,adlib -device cirrus-vga -display gtk -hda dos.img -drive file=fat:rw:dosfiles/ -boot order=c
```
一旦你使用 FreeDOS 引导,你保存在 **D:** 驱动器中的任何文件将被保存到 Linux 上的 **dosfiles/** 文件夹中。这可以从 Linux 上很容易地直接去读取这个文件;然而,必须注意的是,启动 QEMU 后,不能从 Linux 中去改变 **dosfiles/** 这个文件夹。 当你启动 QEMU 时QEMU 一次性构建一个虚拟的 FAT 表,如果你在启动 QEMU 之后,在 **dosfiles/** 文件夹中增加或删除文件,仿真程序可能会变得混乱。
我使用 QEMU 喜欢去运行一些我收藏的 DOS 程序, 像 As-Easy-As 电子表格程序。这是一个在 1980 年代和 1990年代非常流行的电子表格程序它和现在的 Microsoft Excel 和 LibreOffice Calc 或和以前更昂贵的 Lotus 1-2-3 电子表格程序完成的工作是一样的。 As-Easy-As 和 Lotus 1-2-3 都保存数据为 WKS 文件,它的最新版本 Microsoft Excel 不能读取,但是,根据兼容性, LibreOffice Calc 可以支持.
### [aseasy-regress1.png][10]
![As-Easy-As spreadsheet program](https://opensource.com/sites/default/files/u128651/aseasy-regress1.png "As-Easy-As spreadsheet program")
As-Easy-As 电子表格程序
我也喜欢在 QEMU中引导 FreeDOS 去玩一些收藏的 DOS 游戏,低昂 original Doom。玩这些老的 DOS 游戏仍然是非常有趣的, 并且它们现在在 QEMU 上运行的非常好。
### [qemu-doom.png][11]
![Doom](https://opensource.com/sites/default/files/u128651/qemu-doom.png "Doom")
Doom
### [qemu-heretic.png][12]
![Heretic](https://opensource.com/sites/default/files/u128651/qemu-heretic.png "Heretic")
Heretic
### [qemu-jill.png][13]
![Jill of the Jungle](https://opensource.com/sites/default/files/u128651/qemu-jill.png "Jill of the Jungle")
Jill of the Jungle
### [qemu-keen.png][14]
![Commander Keen](https://opensource.com/sites/default/files/u128651/qemu-keen.png "Commander Keen")
Commander Keen
QEMU 和 FreeDOS 可以很容易地在 Linux 上运行老的 DOS 程序。你一旦设置了 QEMU 作为虚拟机仿真程序并安装了 FreeDOS你将可以在 Linux 上运行你收藏的经典的 DOS 程序。
_All images courtesy of [FreeDOS.org][16]._
--------------------------------------------------------------------------------
作者简介:
Jim Hall - Jim Hall 是一位开源软件的开发者和支持者,可能最知名的是 FreeDOS 的创始人和项目协调者。 Jim 也非常活跃于开源软件适用性领域,作为 GNOME Outreachy 适用性测试的导师,同时也作为一名兼职教授,教授一些开源软件适用性的课程,从 2016 到 2017 Jim 在 GNOME基金会的董事会担任董事在工作中 Jim 是 CIO ...
--------------------------------------------------------------------------------
via: https://opensource.com/article/17/10/run-dos-applications-linux
作者:[ Jim Hall ][a]
译者:[qhwdw](https://github.com/qhwdw)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]:https://opensource.com/users/jim-hall
[1]:https://opensource.com/resources/what-is-linux?intcmp=70160000000h1jYAAQ&utm_source=intcallout&utm_campaign=linuxcontent
[2]:https://opensource.com/resources/what-are-linux-containers?intcmp=70160000000h1jYAAQ&utm_source=intcallout&utm_campaign=linuxcontent
[3]:https://developers.redhat.com/promotions/linux-cheatsheet/?intcmp=70160000000h1jYAAQ&utm_source=intcallout&utm_campaign=linuxcontent
[4]:https://developers.redhat.com/cheat-sheet/advanced-linux-commands-cheatsheet?intcmp=70160000000h1jYAAQ&utm_source=intcallout&utm_campaign=linuxcontent
[5]:https://opensource.com/tags/linux?intcmp=70160000000h1jYAAQ&utm_source=intcallout&utm_campaign=linuxcontent
[6]:https://opensource.com/file/374821
[7]:https://opensource.com/file/374771
[8]:https://opensource.com/file/374776
[9]:https://opensource.com/file/374781
[10]:https://opensource.com/file/374761
[11]:https://opensource.com/file/374786
[12]:https://opensource.com/file/374791
[13]:https://opensource.com/file/374796
[14]:https://opensource.com/file/374801
[15]:https://opensource.com/article/17/10/run-dos-applications-linux?rate=STdDX4LLLyyllTxAOD-CdfSwrZQ9D3FNqJTpMGE7v_8
[16]:http://www.freedos.org/
[17]:https://opensource.com/user/126046/feed
[18]:http://www.freedos.org/
[19]:https://www.qemu.org/
[20]:http://www.freedos.org/
[21]:http://www.freedos.org/links/
[22]:https://opensource.com/users/jim-hall
[23]:https://opensource.com/users/jim-hall
[24]:https://opensource.com/article/17/10/run-dos-applications-linux#comments