-
-
Save jlollis/5ab887c47b4c212da560d6045650180e to your computer and use it in GitHub Desktop.
Play the Orginal Wolfenstein 3D on Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.