How to install virtual box in kali Linux

Here is a quick guide to install and set up VirtualBox on Kali Linux:

  1. 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
  1. Download and install the VirtualBox signing key:
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
  1. Update your package list:
sudo apt update
  1. Install VirtualBox:
sudo apt install virtualbox-6.1
  1. Start the VirtualBox GUI with the following command:
virtualbox
  1. Create a new virtual machine and install the operating system of your choice.
  2. Enjoy using VirtualBox on Kali Linux!

Leave a Reply