You can install applications different ways. Terminal, the Ubuntu Software Center, and Synaptic.

With the Ubuntu Software Center, you just open it from the Launcher, and search for the application that you want.

If you know the right commands to install via terminal, then you'd just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, you can run the command(s) needed to install the application.

For synaptic, it has to be installed on you system. To install it, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo apt install synaptic

Once installed, you can open it, and search for the application that you want to install, and just mark it for installation.

Also in some cases, you have to download either a .deb file in case of your question about Chrome, and have to manually install it, or a .tar.gz file, and that also have to done manually.

Now as far as Chrome is concerned, you can install it by downloading the .deb file, or just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

For 32bit

wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome-stable_current_i386.deb

For 64bit

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb

If you encounter any error during the installation, when its done do

sudo apt -f install

For pros and cons of the different ways to install see this Post.

Source for Chrome installation: Google

Addition

Installing software in Ubuntu can be done several ways:

Ubuntu Software Center

You can search for an application, or go through the categories:

Synaptic Package Manager

You can search for an application, or go through the categories:

Installing via Terminal

Installing from terminal can be done in several ways:

APT
You can search for an application. The command to search for software is:

apt search <application_name>

Adding Repositories:

Edit the sources list file, and add

sudo -H gedit /etc/apt/sources.list

Or add from terminal

sudo add-apt-repository <repository_name>
sudo apt update
sudo apt install <application_name>

Others ways you can install

Manual download of a .deb (Debian package):

  • Once downloaded, you can double-click on the package to have it open in the Software Center, from where you can install it.
  • Or, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, navigate to the download location, and run the command(s) below:

    sudo dpkg -i <package_name>.deb
    

Other options:

  • .rpm files are packaged for Fedora or Mandriva, but you can use alien (you can install using Synaptic) that allows you to convert .rpm files to .deb. (may not work all the time)

  • .tar.gz files are compressed. If you see the .tar.gz, it could be compressed files that have a pre-compiled binary file, or files that have the source code allowing you to compile the application from source. To find out how to install from a .tar.gz, see How to install from a .tar.gz.

For more info see Installing Software, or A beginners guide to installing programs in Ubuntu

Answer from Mitch on askubuntu.com
🌐
Ubuntu
ubuntu.com › tutorials › install-ubuntu-desktop
Install Ubuntu Desktop | Ubuntu
The interactive option is the standard route, but more advanced users can use the automated installation option to import a configuration file from a web server to standardise multiple installs and add further customisations. An example tutorial for Automated installation is available here.
Top answer
1 of 11
90

You can install applications different ways. Terminal, the Ubuntu Software Center, and Synaptic.

With the Ubuntu Software Center, you just open it from the Launcher, and search for the application that you want.

If you know the right commands to install via terminal, then you'd just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, you can run the command(s) needed to install the application.

For synaptic, it has to be installed on you system. To install it, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo apt install synaptic

Once installed, you can open it, and search for the application that you want to install, and just mark it for installation.

Also in some cases, you have to download either a .deb file in case of your question about Chrome, and have to manually install it, or a .tar.gz file, and that also have to done manually.

Now as far as Chrome is concerned, you can install it by downloading the .deb file, or just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

For 32bit

wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome-stable_current_i386.deb

For 64bit

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb

If you encounter any error during the installation, when its done do

sudo apt -f install

For pros and cons of the different ways to install see this Post.

Source for Chrome installation: Google

Addition

Installing software in Ubuntu can be done several ways:

Ubuntu Software Center

You can search for an application, or go through the categories:

Synaptic Package Manager

You can search for an application, or go through the categories:

Installing via Terminal

Installing from terminal can be done in several ways:

APT
You can search for an application. The command to search for software is:

apt search <application_name>

Adding Repositories:

Edit the sources list file, and add

sudo -H gedit /etc/apt/sources.list

Or add from terminal

sudo add-apt-repository <repository_name>
sudo apt update
sudo apt install <application_name>

Others ways you can install

Manual download of a .deb (Debian package):

  • Once downloaded, you can double-click on the package to have it open in the Software Center, from where you can install it.
  • Or, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, navigate to the download location, and run the command(s) below:

    sudo dpkg -i <package_name>.deb
    

Other options:

  • .rpm files are packaged for Fedora or Mandriva, but you can use alien (you can install using Synaptic) that allows you to convert .rpm files to .deb. (may not work all the time)

  • .tar.gz files are compressed. If you see the .tar.gz, it could be compressed files that have a pre-compiled binary file, or files that have the source code allowing you to compile the application from source. To find out how to install from a .tar.gz, see How to install from a .tar.gz.

For more info see Installing Software, or A beginners guide to installing programs in Ubuntu

2 of 11
34

There are many ways to install packages in Ubuntu. I will try to list the most used methods, giving links to detailed explanations for each one.


Installing packages with an internet connection

1. Installing packages via your web browser

The APT protocol (or apturl) is a very simple way to install a software package from a web browser.

2. Installing packages via a basic graphical method

Ubuntu Software Center is a one-stop shop for installing and removing software on your computer.

3. Installing packages via an advanced graphical method

Synaptic is a graphical front-end to apt, the package management system in Ubuntu.

4. Installing packages via text based methods

  • Aptitude - the text-based method
  • apt-get - the technical method

Installing packages without an internet connection

1. Using Keryx

Keryx is a portable, cross-platform package manager that provides a graphical interface for gathering updates, packages, and dependencies for offline computers.

2. Using the Synaptic package download script

Synaptic package manager has built-in feature to generate a package download script.

3. Using apt-offline

apt-offline is an offline text based apt package manager.

4. Installing downloaded packages

  • .deb packages (here fits the part from the question relating to the installation of Google Chrome)
  • .tar.gz and .tar.bz2 packages
  • .rpm packages

Source: https://help.ubuntu.com/community/InstallingSoftware

Discussions

How can I install programs on ubuntu and mint?
Generally, you install software using apt install command, and use apt search if you're not sure about the name of the package. However, it sounds like you're trying to download a .deb package and install it. There is a command for side loading, but generally sideloading isn't ideal More on reddit.com
🌐 r/linuxquestions
36
43
November 21, 2021
Would it be possible to manually install Ubuntu from the terminal?
How "manually" are you looking for? Full manual would be partitioning yourself, using debootstrap, installing GRUB. That's definitely do-able. I maintain a HOWTO for using ZFS as a root filesystem; it is built around a manual install: https://openzfs.github.io/openzfs-docs/Getting%20Started/Ubuntu/Ubuntu%2020.04%20Root%20on%20ZFS.html More on reddit.com
🌐 r/Ubuntu
30
21
April 4, 2021
Installing software via cli
Do a apt search first. If apt finds the package, install it with sudo apt install . This way, you get regular updates with a system update. If you really only have a .deb file, go with what u/unpunctual_bird wrote. More on reddit.com
🌐 r/Ubuntu
7
0
May 24, 2024
Is there a short guide how to install programs on ubuntu?
Open Ubuntu software Search Click Install .... Profit More on reddit.com
🌐 r/Ubuntu
9
2
July 4, 2022
🌐
GeeksforGeeks
geeksforgeeks.org › linux-unix › install-command-in-linux-with-examples
install command in Linux with examples - GeeksforGeeks
September 11, 2024 - If the files are identical, 'install' will not overwrite the destination. 3. Use the -T Option: This option treats DEST as a file rather than a directory: This command creates 'destination.txt' as a regular file even if the path resembles a directory structure. 4. Set Ownership and Permissions: Change the owner to user and set permissions to 755: This command copies 'rocket.c' to '/usr/local/bin/' with specified ownership and permissions. 5. Printing version information: Check the version of install:
🌐
Wikihow
wikihow.com › computers and electronics › operating systems › linux › ubuntu › how to install software in ubuntu linux: 5 easy ways
How to Install Software in Ubuntu Linux: 5 Easy Ways
June 9, 2025 - The Snap Store is another great ... you want access to the Snap Store, you'll need to install it using the command sudo snap install snap-store in a Terminal window.[16] X Research source...
🌐
How-To Geek
howtogeek.com › home › linux & macos terminal › how to use apt-get to install programs in ubuntu from the command line
How to Use Apt-Get to Install Programs in Ubuntu from the Command Line
October 19, 2016 - He is a voracious researcher and enthusiastic in conversations about his interests. ... Ubuntu has a lot of GUI-based methods for installing applications, but they take some time to search and find. Since the keyboard is usually faster than the mouse, managing your software via the command-line ...
🌐
LinuxVox
linuxvox.com › blog › how-to-install-ubuntu-with-command-prompt
Installing Ubuntu with Command Prompt: A Comprehensive Guide — linuxvox.com
To install software packages in Ubuntu, you can use the apt command in the Terminal. For example, to install the Firefox web browser, run the following command:
Find elsewhere
🌐
Opensource.com
opensource.com › article › 18 › 8 › how-install-software-linux-command-line
How to install software from the Linux command line | Opensource.com
The dnf (or yum) command is a front-end for the RPM packaging system. If you can't find an app in your software repository but you can find it for download directly from its vendor site, you can use dnf to manually install an .rpm file.
🌐
LabEx
labex.io › tutorials › linux-linux-install-command-with-practical-examples-422738
Linux install Command with Practical Examples | LabEx
Now, let's install the vlc package using the Snap command: ... The snap install command downloads and installs the specified Snap package on your system. You can also remove packages using the snap remove command: ... The snap remove command ...
🌐
LinuxVox
linuxvox.com › blog › install-ubuntu-from-command-line
Install Ubuntu from the Command Line: A Comprehensive Guide — linuxvox.com
Then, use the dd command to write the ISO image to the USB drive: sudo dd if=/path/to/ubuntu.iso of=/dev/sdb bs=4M status=progress oflag=sync · Insert the USB drive or DVD into your computer and restart it. Enter the BIOS or UEFI settings and change the boot order to prioritize the USB drive or DVD. Save the settings and exit the BIOS/UEFI. The computer should now boot from the installation media.
🌐
Quora
quora.com › How-do-I-install-a-program-from-terminal-Ubuntu
How to install a program from terminal Ubuntu - Quora
Answer (1 of 4): Sudo apt install “package name”, enter your password. There is no need to use the command line to install since you have the software center. The command line comes in handy for multiple programs at once, example sudo apt install vlc && apt install gimp && apt install waterfox ...
🌐
How-To Geek
howtogeek.com › home › linux › how to install software on ubuntu: a beginner's guide to snap and apt
How to Install Software on Ubuntu: A Beginner's Guide to Snap and APT
January 23, 2025 - You can add a new PPA and install ... enter the following commands at a terminal prompt: sudo add-apt-repository ppa:mozillateam/ppa sudo apt update sudo apt install firefox · Firefox would then be updated along with all your ...
🌐
Medium
medium.com › @achanandhi.m › how-to-install-application-on-ubuntu-ff8970e48ec7
How to install application on Ubuntu | by Achanandhi M | Medium
August 28, 2024 - Example: To install GIMP, a popular image editing tool: Search for “GIMP” in the Ubuntu Software Center. Click “Install” and follow the prompts. 2. Installing Applications via APT (Advanced Package Tool) APT is a command-line tool used ...
🌐
MonoVM
monovm.com › blog › tutorials › linux install command tutorial
Linux Install Command Tutorial
November 28, 2024 - Attention: To create a directory ... path: sudo install -d /path/to/desired/location/new_directory_name · Example: Imagine you want to create a directory with the name "data" in a directory named "/home/user"....
🌐
Ubuntu Community
help.ubuntu.com › community › Installation › LowMemorySystems
Installation/LowMemorySystems - Community Help Wiki
July 24, 2024 - The recommended install for low memory system is the command-line system. you may wish to also try the MinimalCD as a base starting point ... after installation you may want to blacklist some restricted modules: (if you want to save some memory) File /etc/default/linux-restricted-modules-common · DISABLED_MODULES="ath_hal fc fglrx fwlanusb ltm nv" if you do not use hibernation, comment or delete /etc/initramfs-tools/conf.d/resume then execute sudo update-initramfs -u
🌐
Ubuntu Community
help.ubuntu.com › community › Installation › FromLinux
Installation/FromLinux - Community Help Wiki
December 5, 2024 - Replace (hd0,3) with the new partition (for example, /dev/sda3 becomes (hd0,3) because Grub 2 counts drives from 0, but partitions from 1). Adapt paths to vmlinuz and initrd to match the installer ISO (relative to /tmp/installer from the previous step). If not sure, you can drop to grub command ...
🌐
Baeldung
baeldung.com › home › installation › the install command in linux
The install Command in Linux | Baeldung on Linux
March 18, 2024 - We can pair our command with the -D and the -t (short for –target-directory) options to achieve this with a single command: $ install -v -D -t new_d/ cicada.txt install: creating directory 'new_dir' 'cicada.txt' -> 'new_d/cicada.txt'
🌐
Readthedocs
bioxtas-raw.readthedocs.io › en › v1.4.0 › install › linux_ubuntu.html
Ubuntu/Linux Mint/Debian install from source instructions — BioXTAS RAW 1.4.0 documentation
Tested on Ubuntu 16.04, Linux Mint 18.3, and Debian 9.4. ... Open a terminal (right click on the desktop and select New Terminal or Open in terminal) and run the following commands (hit enter/return to execute each command): ... Open a new terminal window (in many distros you can right click on the desktop and select New Terminal or Open in terminal). Download Miniconda Python (Python 2.7) distribution and install...
🌐
NTU Singapore
www3.ntu.edu.sg › home › ehchua › programming › howto › Ubuntu_HowTo.html
How to install Ubuntu and Get Started
It can also resume installation after an interruption. There are a few sets of toots that can be used to interface with Debian's Advanced Packaging Tool (APT): ... apt: The newer tool (since Ubuntu 14.04) combines the most commonly used commands from apt-get and apt-cache.