When I go to the virtual box website I download the package when I countine to open it.It open up in the store I hit install it says installing for a second then it goes back to install option and doesn't install please help.
Asked
Active
Viewed 72 times
0
-
Does this answer solve your problem? – Raphael Oct 19 '16 at 03:45
-
Sorry no the software center says installing for a second than goes back to install. – Orangestrafe1 orange Oct 19 '16 at 03:49
-
https://askubuntu.com/questions/633639/how-do-i-update-a-program-installed-from-a-manually-downloaded-deb-package/633646#633646https://askubuntu.com/questions/633639/how-do-i-update-a-program-installed-from-a-manually-downloaded-deb-package/633646#633646 – Bruni Oct 19 '16 at 08:22
1 Answers
2
Install using command line.
Run the following command
$sudo dpkg -i <path to virtual box .deb package>
If you get any dependency error run the following command
$sudo apt-get install -f
note : No need to run the command dpkg -i
for installing the package after running the apt-get install -f
command, which does two jobs of fixing dependenies and also installing the package
I hope this answer would help.

TejaReddy
- 173