mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
629 B
Plaintext
30 lines
629 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# dosbox
|
|
|
|
> MS-DOS emulator to run legacy DOS applications and games.
|
|
> More information: <https://www.dosbox.com/wiki/Usage>.
|
|
|
|
- Start DOSBox with default settings:
|
|
|
|
`dosbox`
|
|
|
|
- Run a DOS executable located at a specific path:
|
|
|
|
`dosbox {{path/to/executable.exe}}`
|
|
|
|
- Mount a folder as C: and run an executable:
|
|
|
|
`dosbox {{path/to/executable.exe}} -c "MOUNT C {{path/to/folder}}"`
|
|
|
|
- Start DOSBox in fullscreen mode:
|
|
|
|
`dosbox -fullscreen`
|
|
|
|
- Exit DOSBox automatically after running a program:
|
|
|
|
`dosbox {{path/to/executable.exe}} -exit`
|