1

I installed DosBox on my Ubuntu 14.04.3:

sudo apt-get install dosbox

I edited the /home/severus/.dosbox/dosbox-0.74.conf from:

fullscreen=false
fulldouble=false
fullresolution=original

to (as mine is 1366x768):

fullscreen=true
fulldouble=true
fullresolution=1366x768

Now when I open DoxBox, Yes it becomes full screen but the usable area still remains the same:

Only This much :

enter image description here

How can I make it Fullscreen?? as it can be done on windows, with all fonts bigger and with larger working space

NOTE: for reference , here is the dosbox-0.74.conf file.

muru
  • 207,228
Severus Tux
  • 10,126

1 Answers1

7
fullscreen=false 
fulldouble=true 
fullresolution=1366x768 
windowresolution=1366x768 
output=opengl 

This config worked pretty well for me. It creates a window the size of your desktop display (which is almost fullscreen-it leaves just the top status bar) and you can always just enter fullscreen after that with alt + enter

m1xalis
  • 116