Skip to content

Instantly share code, notes, and snippets.

@jlollis
Created February 19, 2019 05:28
Show Gist options
  • Save jlollis/5ab887c47b4c212da560d6045650180e to your computer and use it in GitHub Desktop.
Save jlollis/5ab887c47b4c212da560d6045650180e to your computer and use it in GitHub Desktop.
Play the Orginal Wolfenstein 3D on Linux
#!/bin/bash
sudo apt-get update
sudo apt-get install dosbox wget
mkdir -p wolf3d
cd wolf3d
wget http://image.dosgamesarchive.com/games/1wolf14.zip
unzip *.zip
dosbox INSTALL.EXE
echo "After setup cd into the new wolf3d directory"
echo "Run wolf3d.exe
@jlollis
Copy link
Author

jlollis commented Feb 19, 2019

To get full screen, go to terminal and type gedit /home/julie/.dosbox/dosbox-0.74.conf

and make these changes:

fullscreen=true
fulldouble=true
fullresolution=1366x768
windowresolution=1366x768
output=opengl #MOST IMPORTANT

autolock=true

Save file and open dosbox again. Enjoy.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment