Site icon TrishTech.com

How to Run FreeDOS 1.3RC within Windows 10 Using Qemu

From running older applications to enjoying vintage games designed for MS-DOS, you can do so many things with the open-source operating system FreeDOS. It is fully compatible with MS-DOS and also offers many modern utilities and features of its own. No matter what it reason is behind your using FreeDOS, you do not have to install FreeDOS on your hard drive and can use it from a virtual machine using Qemu.

The powerful virtualization software Qemu  supports Windows, Linux and macOS. Qemu is no-nonsese alternative to the likes of VirtualPC, VIrtual Box or even VMWare. In just a few seconds, you can load any operating system in Windows using Qemu.

Here is how you can run FreeDOS from within Windows 10:

  1. Download and install Qemu from https://www.qemu.org/. After the installation, add Qemu bin folder (usually C:\Program Files\qemu) to the system PATH variable.
  2. Download FreeDOS Live CD from https://www.freedos.org/download/. In our case, the downloaded file was FD13-LiveCD.zip
  3. Give the following command: qemu-system-i386 -cdrom fd13live.iso -m 150 This will run FreeDOS in live CD format with only 150 MB of RAM. For better performance, you can increase the RAM allotted to virtual machine.

In case you want to install FreeDOS to a virtual hard drive, then you have to create a hard drive image first and then load it in Qemu. Here is how:

  1. Give command: qemu-img create freedos.img 50M in order to create a virtual hard drive of 50 MB capacity and save it.
  2. Now give this command to load FreeDOS: qemu-system-i386 -drive file=fd13lite.img,media=disk,format=raw -drive file=freedos.img,format=raw,media=disk -m 64
  3. You should see the familiar FreeDOS screen by now. You can proceed and install FreeDOS on the virtual hard drive.

If you are overwhelmed by all these commands, then you can create batch scripts for everything. As you double-click on these batch scripts, FreeDOS is executed and is displayed for everyone. You can use this setup to easily to launch FreeDOS and play games like Doom and Quake.

Exit mobile version