how to setup virtualBox in kali linux 2022
hello and welcome back to incrediBit
today we will be setting up virtaulbox on kali linux.
you find video tutorial at the end of page.
VMs are great. There are many upsides with using them. One of the being, able to run multiple Operating Systems (OSs) at the same time. You can have your host machine “untouched”, and then only interact with the guest VMs.
Before trying to install VirtualBox, please make sure your version of Kali Linux is updated.
Prepartion , update and upgrade the system.
1 . first update the system by typing sudo apt update
then upgrade sudo apt full-upgrade -y
and then [ -f /var/run/reboot-required ] && sudo reboot -f
2. import virtual-box repositories
add these commands to terminal and hit enter,
curl -fsSL https://www.virtualbox.org/download/oracle_vbox_2016.asc|sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/oracle_vbox_2016.gpg
Then
curl -fsSL https://www.virtualbox.org/download/oracle_vbox.asc|sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/oracle_vbox.gpg
then
echo "deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian bullseye contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list
At this point update the sytem again by sudo apt update
install DKMS ,
DKMS or Dynamic Kernel Module Support is a system that allows discrete kernel modules to update without the need to modify the entire kernel.
sudo apt install -y dkms
now system is ready to install virtaul box ,
simply run
sudo apt install -y virtualbox virtualbox-ext-pack
virtual box will download and install. after that simply type virtualbox or search from
Menu to run it simply.
complete video Tutorial is available on you tube .
Comments
Post a Comment