copy / v86

x86 PC emulator and x86-to-wasm JIT, running in the browser
https://copy.sh/v86/
BSD 2-Clause "Simplified" License
19.9k stars 1.41k forks source link

Windows 3.1 not working #208

Open testcooldude4444 opened 6 years ago

testcooldude4444 commented 6 years ago

I couldn't load windows 3.1 on your site.

copy commented 6 years ago

Indeed. This particular version of Windows has never worked on v86.

shanept commented 6 years ago

Any more info on this? I get the following - is this what everyone else gets? Did anyone get past this?

Setup cannot install MS-DOS 6.22 on your computer.

Your computer does not have a hard disk, your hard disk is not functioning correctly, or your hard disk requires a special device driver. Contact your computer vendor for assistance.

untitled

BelleNottelling commented 6 years ago

Install it within qemu (make it a raw image format) and then boot the disk image within v86

strikersix23 commented 6 years ago

You don't need to do that. head to allbootdisks.com and look for 6.22.img use a dos manual or use freedos

alejandrocobo commented 4 years ago

Just for the record, I installed MS-DOS 6.22 and Windows 3.11 FWG on a Qemu machine. On a v86 machine, I used that disk image with all standard graphic drivers. No one worked. But XGA (640x480, 16 colors) made the second stage installation (the one where it is shown a GUI) to appear. Unfortunately the system ended up frozen. I've been unable to reproduce that behavior once again.

Pixelsuft commented 4 years ago

1 2 Don't works on windows 3.11

copy commented 3 years ago

@Pixelsuft That works, pretty cool. Do you have small-ish (preferably less than 100MB) disk image to share?

Pixelsuft commented 3 years ago

@copy

Image

http://pixelsuftbox.herokuapp.com/static/img/win31.img

File Size

33 MB

copy commented 3 years ago

For reference, @Pixelsuft's Windows 3.1 is configured like this:

Screenshot_2021-03-05_23-36-49

It seems to be working fine modulo a popup after boot. edit and qbasic don't work due to a missing FPU instruction. I took the liberty of adding it as a profile: https://copy.sh/v86/?profile=windows31

dugoh commented 2 years ago

As a tiny 30th birthday present.. The popup can be fixed by changing the startup to win -s or win /s. A well aimed

sed -i -e's/afe boot/        /' images/win31.img

should do the trick.

copy commented 2 years ago

@dugoh Applied, cheers!

SuperMaxusa commented 1 year ago

Standard Mode for WfW 3.1 and 3.11 (networking and some drivers are not working):

3.1: win /s 3.11: win /D:T (source)

screenshot