5

I have downloaded virtualbox.deb package. But I don't know how to install this application. Please anyone let me know how to install it..

Bruno Pereira
  • 74,715

3 Answers3

8

Double clicking it should open it in the Software Centre. That should give you the option to install.

Oli
  • 299,380
6

try this: sudo dpkg -i YourDebPackage.deb

Mostafa Shahverdy
  • 5,342
  • 3
  • 22
  • 34
0

You can also use gdebi, a tool similar to dpkg that also resolves any dependencies needed for the package to work.

You just need to install gdebi (sudo apt-get install gdebi), and then run:

sudo gdebi /PATH/TO/PACKAGE.deb
Wilf
  • 30,732