update docs with proper qemu invocation

This commit is contained in:
Fabian 2025-09-10 17:20:13 -03:00
parent 6e3afa67ab
commit 4e15afcd77
2 changed files with 6 additions and 6 deletions

View file

@ -12,7 +12,7 @@ qemu-img create -f raw hdd.img <size in megabytes>M
```
2. Run QEMU with the following settings:
```sh
qemu-system-i386 -m 128 -M pc,acpi=off -hda hdd.img
qemu-system-i386 -m 128 -M pc,acpi=off -drive file=hdd.img,format=raw
```
- add `-cdrom /path/to/installCD.iso`, if you use a CD version.
- add `-fda /path/to/boot_floppy.img -boot a`, if you use a floppy version or your install CD is non-bootable.

View file

@ -17,14 +17,14 @@
3. Run QEMU with the following settings for installation:
```sh
qemu-system-i386 -m 64 -hda hdd.img -cpu pentium -M pc,acpi=off -cdrom InstallCD.iso
qemu-system-i386 -m 64 -drive file=hdd.img,format=raw -cpu pentium -M pc,acpi=off -cdrom InstallCD.iso
```
4. Run `xcopy /v <CD-ROM letter>:\I386\ C:\install\` in a VM to copy all files, disable the CD-ROM driver.
5. Run QEMU with the following settings:
```sh
qemu-system-i386 -m 64 -hda hdd.img -cpu pentium -M pc,acpi=off
qemu-system-i386 -m 64 -drive file=hdd.img,format=raw -cpu pentium -M pc,acpi=off
```
6. Run `C:\install\winnt /F /C` in a VM.
@ -67,7 +67,7 @@ Recommended version: Windows NT 4.0 SP1
1. Run QEMU with the following settings for installation:
```sh
qemu-system-i386 -m 64 -hda hdd.img -cdrom InstallCD.iso -cpu pentium -M pc,acpi=off
qemu-system-i386 -m 64 -drive file=hdd.img,format=raw -cdrom InstallCD.iso -cpu pentium -M pc,acpi=off
```
2. On setup startup, press F5 and select "Standard PC".
@ -93,7 +93,7 @@ var emulator = new V86({
1. Run QEMU with the following settings for installation:
```sh
qemu-system-i386 -m 512 -hda hdd.img -cdrom InstallCD.iso
qemu-system-i386 -m 512 -drive file=hdd.img,format=raw -cdrom InstallCD.iso
```
Optional:
@ -148,7 +148,7 @@ Models: Sound Blaster 16 or AWE32 or compatible (WDM)
1. Run QEMU with the following settings for installation:
```sh
qemu-system-i386 -m 1024 -hda hdd.img -cdrom InstallCD.iso
qemu-system-i386 -m 1024 -drive file=hdd.img,format=raw -cdrom InstallCD.iso
```
Optionally add `-accel kvm` (for Linux host), `-accel whpx` (for Windows host) or `-accel hvf` (for MacOS host) to use hypervisor acceleration.