metalx1000

Get Windows 3.1 Win3.1 running in Dosbox

Jan 16th, 2022 (edited)
704
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.29 KB | None | 0 0
  1. Get Windows 3.1 Running in Dosbox
  2. Based on this tutorial:
  3. https://www.howtogeek.com/230359/how-to-install-windows-3.1-in-dosbox-set-up-drivers-and-play-16-bit-games/
  4. #create directory to put windows in
  5. mkdir win31
  6. cd win31
  7.  
  8. #get a win31.zip file from an online emulator
  9. #by searching for win3.1 emulator online
  10. #example site
  11. wget "https://www.retrogames.cz/dos/zip/Win31.zip" -O /tmp/Win31.zip
  12. unzip /tmp/Win31.zip
  13. dosbox AUTOEXEC.BAT
  14.  
  15. #SOUND DRIVERS
  16. mkdir sb
  17. #get sound drivers
  18. #https://www.classicdosgames.com/drivers.html
  19. wget "https://archive.org/download/sb-16-w-3x/SB16W3x.zip" -O /tmp/SB.zip
  20. unzip /tmp/SB.zip -d sb
  21. echo "cd c:\\sb" > sb.bat
  22. echo "install.exe" >> sb.bat
  23. dosbox sb.bat
  24. #interrupt settings should be changed from 5 to 7
  25.  
  26. #VIDEO DRIVERS
  27. #https://www.classicdosgames.com/drivers.html
  28. mkdir S3
  29. wget "https://archive.org/download/s3drivers/s3drivers.zip" -O /tmp/s3.zip
  30. unzip /tmp/s3.zip -d S3
  31. dosbox AUTOEXEC.BAT
  32. # double-click the “Windows Setup” icon. Click the “Options” menu in the Windows Setup window and select “Change System Settings.”
  33. #select “Other display (Requires disk from OEM).”
  34. #choose C:\S3
  35. #recommend choosing 800×600 with 256 colors
  36. #CLICK OK A BUNCH OF TIMES
  37. #exit out of Windows and at the command prompt
  38. #cd c:\windows
  39. #setup
Add Comment
Please, Sign In to add comment