I installed VirtualBox through sudo apt-get install virtualbox
, but it's not working for the installation of Genymotion.
When I try to install Genymotion, it says 'no virtual box detected'.
I installed VirtualBox through sudo apt-get install virtualbox
, but it's not working for the installation of Genymotion.
When I try to install Genymotion, it says 'no virtual box detected'.
From Virtualbox:
To install the latest virtualbox, first remove the previous versions of Virtualbox by typing the command:
sudo apt-get remove --purge virtualbox*
Then, add source:
sudo add-apt-repository "deb http://download.virtualbox.org/virtualbox/debian trusty contrib"
Add the key:
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
Then, to install do:
sudo apt-get update && sudo apt-get install virtualbox-5.0
I think you are trying to install virtualbox using sudo apt-get install virtualbox
Try this instead.
sudo -i
and enter your password press Enternano /etc/apt/sources.list
EnterScroll down to last and add the following
#######VirtualBox Repositories
deb http://download.virtualbox.org/virtualbox/debian vivid contrib
Save it and close.
In terminal:
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
apt-get update
apt-get install dkms
sudo apt-get install virtualbox-5.0
add-apt-repository 'deb http://download.virtualbox.org/virtualbox/debian vivid contrib'
instead of manually editing sources.list
.
– muru
Dec 27 '15 at 14:29