There are a couple of ways to get (install) software package(s) or applications (apps) installed in Ubuntu. The common way is through the Ubuntu software centre. This process is the easiest. It is basically point-and-click style. Many of the intricacies involve in the process are abstracted from the view of the Linux user.
But some software apps cannot be found (and installed) in the official Ubuntu software repository. Also some app distributors for the Ubuntu platform would rather choose to distribute their apps by [providing downloadable Ubuntu/Debian (.deb) package from their websites.
This deb package contains all the dependencies an application needs to be successfully installed, which can be done through the terminal using the following steps:
Open the terminal (SHORTCUT: Ctrl+Alt+T) and enter the command:
sudo dpkg –i
/path/to/deb/file
The “dpkg” utility is a low-level package tool use in Ubuntu (and other debian-based distriutions) for directly installing software packages (in this case, the .deb).
sudo apt-get install –f
Happy Linux’NG!
Note: If you’ve not installed Ubuntu Linux, learn how to do so here.
- How To Create Bootable USB Drives With Linux Disks Application - February 21, 2022
- How to Install Slack Communication Tool on Ubuntu Linux [2022] - February 11, 2022
- Step-by-Step Visual Studio Code IDE Installation on Ubuntu Linux [2022] - January 31, 2022