How to create virtual machine in parrot os|| Download virtual box in parrot os
AD
To install VirtualBox in Parrot OS, you can follow these steps:
Step 1: Update your system Open a terminal and run the following command to update your system's package list:
sudo apt update
Step 2: Install required dependencies Run the following command to install the necessary dependencies for VirtualBox:
sudo apt install build-essential module-assistant virtualbox-dkms
During the installation, you may be prompted to press Enter to continue or accept any additional packages. Provide the necessary inputs when prompted.
Step 3: Configure kernel modules Run the following command to configure the kernel modules.
sudo m-a prepare
Step 4: Download VirtualBox Visit the VirtualBox website (https://www.virtualbox.org/wiki/Linux_Downloads) and download the appropriate package for your Parrot OS version. You will find the "Debian-based Linux distributions" section, and there should be a package for Parrot OS.
Step 5: Install VirtualBox Once the package is downloaded, navigate to the directory where it was saved (typically the Downloads folder), and in the terminal, run the following command to install VirtualBox:
sudo dpkg -i <package_name.deb>
Replace <package_name.deb>
with the actual name of the downloaded package.
Step 6: Configure additional settings
To use USB devices and other advanced features in VirtualBox, it is recommended to add your user account to the vboxusers
group. Run the following command to do so:
AD
sudo usermod -aG vboxusers
Step 7: Start VirtualBox You can now start VirtualBox by searching for it in the application menu or by running the following command in the terminal:
virtualbox
VirtualBox should now be installed and ready to use on your Parrot OS system.
AD
Post a Comment