Advertisement
Faqqer

DOOM DOSBox Setup Tutorial

Jul 5th, 2013
1,039
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 1 0
  1. GETTING STARTED:
  2. First off, you'll need to download dosbox (duh).
  3. http://www.dosbox.com/download.php?main=1
  4.  
  5. Once you've set that up, you'll probably want the DOOM executables. We'll get to that in a moment.
  6.  
  7. SETTING UP YOUR DOSBOX:
  8. [if you already have DOSBox set up, skip this part]
  9. Next, you'll want to get a good configuration going.
  10.  
  11. First thing you'll want to do once you have dosbox set up is to allocate a folder to it.
  12. Go to your main C:\ drive, and make a folder there named whatever you want. For example, we'll be using C:\dosgames\
  13. Now, once you've made that folder, open up DOSBox Options. It should be in the start menu OR in the main dosbox folder.
  14.  
  15. Now that the options are open, go to [autoexec] and put this under it:
  16. mount C C:\dosgames\
  17. C:
  18. cls
  19. dir
  20.  
  21. This will make it so that, automatically, whenever DOSBox is launched, it will run these lines.
  22. Let's break that down, though, since I'm assuming you have never used DOSBox before.
  23.  
  24. mount C C:\dosgames\
  25.  
  26. Should be obvious enough. Mounts the VM's C: drive to C:\dosgames\.
  27.  
  28. C:
  29.  
  30. Changes to the C: drive.
  31.  
  32. cls
  33. dir
  34.  
  35. Clears the screen, then shows the directory listing. Ez stuff, eh?
  36.  
  37. Mess around with settings as you please, but here's (some parts of) my config.
  38. [sdl]
  39. fullscreen=true
  40. fulldouble=true
  41. fullresolution=1280x800
  42. windowresolution=1280x800
  43. output=overlay
  44. autolock=true
  45. sensitivity=100
  46. waitonerror=true
  47. priority=higher,normal
  48.  
  49. [dosbox]
  50. language=
  51. machine=vesa_nolfb
  52. captures=capture
  53. memsize=64
  54.  
  55. [render]
  56. frameskip=0
  57. aspect=false
  58. scaler=none
  59.  
  60. [cpu]
  61. core=auto
  62. cputype=auto
  63. cycles=max
  64. cycleup=1000
  65. cycledown=1000
  66.  
  67. Just tinker with 'em. See what works. It's what everyone does.
  68.  
  69. SETTING UP DOOM:
  70. Now that you've messed with that and set up DOSBox, it's time to play doom!
  71. Of course, you need to download DOOM:
  72. Since I'm a fucking nerd who likes old versions maybe a bit too much, this download includes the original v1.0, v1.9, and Ultimate versions of DOOM.
  73. https://dl.dropboxusercontent.com/u/27048651/vr_doom_dos.7z
  74.  
  75. And finally, put it in C:\dosgames\doom\, then run DOSBox, and you're good to go!
  76.  
  77. For navigation, use cd directory
  78. example:
  79. cd doom
  80. cd 1_9
  81.  
  82. You can use cd .. to go backward.
  83.  
  84. For listing the files in the current directory, use dir
  85.  
  86. For running any executable, just type in its name.
  87.  
  88. So, to run DOOM 1.0, you'd do
  89. cd doom
  90. cd 1_0s
  91. doom.exe
  92.  
  93. Use the SETUP executables to set up controls and such.
  94.  
  95. If there are any problems, please report them to me in the thread/via email/via IRC.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement