How To Install dosbox on Kali Linux
Introduction
In this tutorial we learn how to install dosbox on Kali Linux.
What is dosbox
dosbox is:
DOSBox is a x86 emulator with Tandy/Hercules/CGA/EGA/VGA/SVGA graphics, sound and DOS. It’s been designed to run old DOS games on platforms that don’t support it.
The following legacy sound devices are emulated: PC Speaker, Creative CMS/Gameblaster, Tandy 3 voice, Adlib, Sound Blaster Pro/16, Disney Soundsource and a Gravis Ultrasound. MPU-401 is forwarded to the host.
There are three methods to install dosbox on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install dosbox Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install dosbox using apt-get by running the following command:
sudo apt-get -y install dosboxInstall dosbox Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install dosbox using apt by running the following command:
sudo apt -y install dosboxInstall dosbox Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install dosbox using aptitude by running the following command:
sudo aptitude -y install dosboxHow To Uninstall dosbox on Kali Linux
To uninstall only the dosbox package we can use the following command:
sudo apt-get remove dosboxUninstall dosbox And Its Dependencies
To uninstall dosbox and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove dosboxRemove dosbox Configurations and Data
To remove dosbox configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge dosboxRemove dosbox configuration, data, and all of its dependencies
We can use the following command to remove dosbox configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge dosboxDependencies
dosbox have the following dependencies:
- libasound2
- libc6
- libgcc-s1
- libgl1
- libpng16-16
- libsdl-net1.2
- libsdl-sound1.2
- libsdl1.2debian
- libstdc++6
- libx11-6
- zlib1g
References
Summary
In this tutorial we learn how to install dosbox package on Kali Linux using different package management tools: apt, apt-get and aptitude.