I am new to Ubuntu. I installed a Ubuntu a few days back. I downloaded a deb files. But i don't know how to install it. Can anyone tell me how to install a downloaded deb file?
Asked
Active
Viewed 1.3k times
4
-
just an FYI, installing the .deb file directly will require you to manually install updates... you won't get these update notifications automatically, and hence this is not the preferred means of installation. – Garrett Sep 01 '14 at 02:05
2 Answers
5
Go to Terminal and type below commands
To Install a downloaded .deb file:
sudo dpkg -i packagename.deb
To Remove a Installed package:
sudo dpkg -r packagename

Suresh C
- 116
3
sudo dpkg -i /path/to/your.deb
or use GDebi.
More info can be found on the wiki about installing software.

wxl
- 901
- 5
- 23