I want to ask how to install package in Ubuntu 14.04 using terminal I need a command to do that and also a command that works with most of package to install
Asked
Active
Viewed 1.4k times
1 Answers
1
You can install applications with apt-get
, Like so:
sudo apt-get install firefox
sudo
- Ask for root(administrator) privileges for:
apt-get
- It is the tool that installs your software with the
install
parameter- The
install
parameter installs the following application:
- The
firefox
- Mozilla Firefox, a free and open-source web-browser build to make the Internet free and accessible to anyone.
Other - but not all - parameters you can add to apt-get
update
- To update your sources list
upgrade
- To upgrade your applications to the newest versions
dist-upgrade
- upgrade your entire distribution: applications, system software etc.
remove
- To remove the selected application(e.g
sudo apt-get remove firefox
)
- To remove the selected application(e.g
purge
- To not only remove the applications binaries but also it's configuration files.
Reference:

blade19899
- 26,704