Here is a quick guide to install and set up VirtualBox on Kali Linux:
- Add the VirtualBox repository to your system’s sources list:
echo "deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian buster contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list
- Download and install the VirtualBox signing key:
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
- Update your package list:
sudo apt update
- Install VirtualBox:
sudo apt install virtualbox-6.1
- Start the VirtualBox GUI with the following command:
virtualbox
- Create a new virtual machine and install the operating system of your choice.
- Enjoy using VirtualBox on Kali Linux!