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 Answer from ZuriPL on reddit.com
Discussions

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
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
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
🌐
Ubuntu
ubuntu.com › tutorials › install-ubuntu-desktop
Install Ubuntu Desktop | Ubuntu
This tutorial is being migrated to the new Ubuntu Desktop documentation. You can find the up-to-date version there: Install Ubuntu Desktop. In this tutorial, we will guide you through the steps required to install Ubuntu Desktop on your laptop or PC.
🌐
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 - You will need to use the sudo command to install packages with Apt. If you want to install software packages without root access, try the Snap Store. ... Run sudo apt-get update to update the package index...
🌐
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 ...
Find elsewhere
🌐
Linuxize
linuxize.com › home › apt › apt command in linux
apt Command in Linux | Linuxize
April 19, 2026 - The apt command manages packages on Ubuntu, Debian, and related distributions. This guide covers the essential commands for installing, upgrading, removing, and searching packages.
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

🌐
Ubuntu Community
help.ubuntu.com › community › Installation › FromLinux
Installation/FromLinux - Community Help Wiki
December 5, 2024 - You may run the Ubuntu Desktop installer directly from your hard drive, or use Debootstrap. Note: These are advanced installation techniques and are not recommended for new users. If you are uncomfortable with the command line terminal, you should create a live Ubuntu Desktop DVD or USB.
🌐
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 - 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 for managing software packages on Debian-based systems like Ubuntu.
🌐
Microsoft Learn
learn.microsoft.com › en-us › windows › wsl › install
Install WSL | Microsoft Learn
Open PowerShell in administrator mode by right-clicking and selecting "Run as administrator", enter the wsl --install command, then restart your machine. ... This command will enable the features necessary to run WSL and install the Ubuntu ...
🌐
Ubuntu Documentation
canonical-ubuntu-packaging-guide.readthedocs-hosted.com › en › latest › how-to › install-built-packages
Install built packages - Ubuntu documentation
2 weeks ago - This documentation contains all the information you need about how Ubuntu is made, the people who make Ubuntu, and how to contribute to the project.
🌐
Liquid Web
liquidweb.com › home › how to install software from source on ubuntu
How To Install Software From Source on Ubuntu | Liquid Web
April 7, 2025 - We will be installing three different software packages from source, deb, and flatpack. Typically, the Ubuntu OS ships with an excellent package management system called APT. Apt-get, or the more recent apt command, are the interfaces users would typically utilize to search for, download, and install packages.
🌐
Ubuntu
ubuntu.com › tutorials › try-ubuntu-before-you-install
Try Ubuntu before you install it | Ubuntu
If you’re unsure, look for a brief message when your system starts - this will often inform you of which key to press to bring up the boot menu. After the desktop has loaded, you’ll see the welcome window. From here, you can select your language from a list on the left and choose between either installing Ubuntu directly, or trying the desktop first.
🌐
It's FOSS
itsfoss.com › remove-install-software-ubuntu
Install and Remove Applications in Ubuntu [Beginner's Guide]
September 9, 2023 - This is actually the command-line ... changes. If you prefer using the terminal commands, follow this method. Using the apt-get or apt command to install software is extremely easy....
🌐
Microsoft Learn
learn.microsoft.com › en-us › dotnet › core › install › linux-ubuntu-install
Install .NET on Ubuntu - .NET | Microsoft Learn
April 23, 2026 - Dependencies can be installed with the apt install command. The following snippet demonstrates installing the zlib1g library: ... .NET is available in the Ubuntu package manager feeds, as well as the Microsoft package repository.
🌐
PostgreSQL
postgresql.org › download › linux › ubuntu
PostgreSQL: Linux downloads (Ubuntu)
Ubuntu includes PostgreSQL by default. To install PostgreSQL on Ubuntu, use the apt (or other apt-driving) command:
🌐
Ubuntu
documentation.ubuntu.com › server › how-to › software › package-management
Install and manage packages - Ubuntu Server documentation
1 week ago - For further information about using APT, read the comprehensive APT User’s Guide, or type apt help. Launching Aptitude with no command-line options will give you a menu-driven, text-based frontend to the APT system. Many of the common package management functions, such as installation, removal, and upgrade, can be performed in Aptitude with single-key commands, which are typically lowercase letters.
🌐
Ubuntu
ubuntu.com › tutorials › install-ubuntu-server
Install Ubuntu Server | Ubuntu
To trigger the installation process, perform the following: Put the Ubuntu DVD into your DVD drive (or insert the USB stick or other install media).