How do I install a .deb file in Ubuntu

link|improve this question

33% accept rate
feedback

5 Answers

up vote 11 down vote accepted

Double click will show the debian package manager and click on install button will install it

link|improve this answer
2  
Don't assume gnome, it is unlikely but he could be using another window manager. – Johan Sep 8 '09 at 20:03
feedback
sudo dpkg -i package.deb
link|improve this answer
feedback
sudo gdebi package.deb

or

sudo gdebi-gtk package.deb

Which will open up a graphical installer.

link|improve this answer
feedback

dpkg -i [name of file].deb

You might need to add a sudo command in the front to elevate the command to superuser level.

link|improve this answer
feedback

In ubuntu, simply double clicking the file should be enough, if not right click the item and open it with the installer.

Or.

You could use the command line way, like stated above.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.