The following article provides information about how to add and remove programs and applications from your Dell PC using the Ubuntu Operating System.
There are several ways to install or remove the various software offerings available on the Ubuntu Operating system.
In this article, I will concentrate on the GUI (Graphical User Interface) options that are easiest for those new to Ubuntu and Linux.
I will summarize the other options available to more experienced users at the bottom of the article.
Check the Additional Information section at the foot of the article, if you have any issues with the article.
The latest revision of Ubuntu GUI has a lot of similarities to the Windows configuration panel. The steps below take you through using the Ubuntu equivalent of the add or remove programs panel in Windows.
This is the officially supported and tested software available for Ubuntu.
This is software that is supported, but is not available under a free license.
This is software that is not supported, but is maintained by the Ubuntu Community.
This is software that is not supported and is not free to download as is all other Ubuntu software.
The Software Center lets you add or remove programs and applications from the Ubuntu Operating system.
You can open the Software Center window from the Dashboard. (It is the suitcase icon.) Or by running a Search for it.
(Fig.1 Ubuntu Software Center Application)
When the window opens click on the Installed icon on the taskbar at the top of the window. You can access a list of categories to look for the software you want. Or you can search for the software in the Search box at the top-right hand side corner of the window.
When you find the program or application you want, you can click it and it highlights your selection. It shows a More Info button. (A line down from the program information about the left-hand side.) It also shows a Remove button (A line down from the program information about the right-hand side.):
Clicking the More Info Button brings up another screen.
The screen that appears will have a message advising whether the software is already installed on your PC. A description of what the software does and some screenshots of the software itself at the top of the page.
Scrolling down the page reveals information about Optional Add-ons, the version, size, license, and updates for the software in the middle of the page.
If you keep scrolling to the bottom of the page, you will see some suggestions about other software offerings. Packages that are installed with your current selection by other users and some reviews from people who have used your selected software.
Clicking the Remove Button will bring up a dialog box.
The first box is usually one that advises of any other installed software that is tied into the software you want to remove.
There is a Cancel button and a Remove All button at the bottom of the box.
Click Remove All to uninstall all the software listed in the dialog box.
An Authentication dialog box appears whenever you are uninstalling software, enter your password and click Authenticate to complete the uninstall.
The program is removed from your list of installed programs.
When the window opens click on the All Software icon on the taskbar at the top of the window to access a list of categories. You can look for the software you want. Or you can search for the software in the Search box at the top-right hand side corner of the window.
The categories break down into further sub categories, and the software is listed in those sub categories. When you find the program or application, you want. You can click it, and it highlights your selection and shows a More Info button. (A line down from the program information about the left-hand side.) It also shows an Install button (A line down from the program information about the right-hand side.):
Clicking the More Info Button brings up another screen.
The screen that appears will have a message advising whether the software is already installed on your PC. A description of what the software does and some screenshots of the software itself at the top of the page.
Scrolling down the page reveals information about Optional Add-ons, the version, size, license, and updates for the software in the middle of the page.
If you keep scrolling to the bottom of the page, you will see some suggestions about other software offerings. Packages that are installed with your current selection by other users and some reviews from people who have used your selected software.
Clicking the Install Button will bring up a dialog box.
An Authentication dialog box appears whenever you are uninstalling software, enter your password and click Authenticate to complete the uninstall.
The installation progress is shown as a bar above the Install button.
Once the program is fully installed the Install button changes to a Remove button.
This section is going to give a brief summary of the other methods you can use to add or remove software on the Ubuntu Operating System. Some of these methods should only be attempted by users who are experienced with Ubuntu and Linux.
Installing and removing software using the Terminal Application (CTRL + ALT + T):
First is installing software:
The terminal command for installing software is:
sudo apt-get install <Software Product Name>
You need to know the name and location of the software product.
Second is uninstalling software:
The Terminal command for uninstalling software is:
sudo apt-get --purge autoremove <Software Product Name>
You can find a list of the software that is already installed on your system using:
dpkg --list
Adding repositories in Ubuntu to increase the number of programs and applications that are available:
These additional repositories are for third-party software. The software will not be supported or tested by Canonical and may be chargeable. It is recommended that you only install software from trusted sources.
There are two methods to accomplish this:
The GUI method:
Open Software Center.
Go to the Edit menu and select Software Sources.
The window that appears has five (5) tabs across the top.
Main, Restricted, Universe, and Multiverse should already be selected on the first tab.
Make sure that Community-maintained Open Source software, Proprietary drivers for devices and Software that is restricted by copyright or legal issues are ticked.
Select close and then hit Reload. If you have made a mistake choose Revert instead.
Additional repositories such as Universe and Multiverse can be enabled by deleting the # at the beginning of the apt lines.
For Universe:
deb http://us.archive.ubuntu.com/ubuntu/ trusty universe
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty universe
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe
There are four (4) similar lines for Multiverse.
Or you can use the add-apt-repository command:
sudo add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty universe multiverse"
sudo add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe multiverse"
Ubuntu software packages are in .deb format. Ubuntu is based on Debian which is where the .deb format comes from:
These can be downloadable from the repositories, from websites, or from files you have compiled.
You can install them using either the Software Center or using Terminal commands as shown above.
Some programs and files are distributed in binary form, rather than as source code. However, these types of files and programs need work done on them with other programs. This is before they can be changed to a format that Ubuntu can use.
Anyone can set up a package repository for Ubuntu. (Most are distribution-specific.) If you know the name of the repository, you can add it. (As described above.) These repositories can often be added to your system seamlessly. If they are formatted as .deb files, they will install from the Software center. When an update becomes available, it will show in the Software Updater application along with your other updates.
Anyone can create a PPA, they are like third-party Packages - only they are hosted on Canonical's Launchpad system. PPAs often contain software that has not officially been added to Ubuntu's main Stable repositories. Think of them like Beta or developer versions of current programs and applications. You can add a Launchpad PPA repository using the command:
sudo add-apt-repository ppa:<repository name>
sudo apt-get update
Adding Canonical Partner repositories in Ubuntu to increase the number of programs and applications that are available:
These additional repositories are for third-party software. The software will not be supported or tested by Canonical and may be chargeable. It is recommended that you only install software from trusted sources.
There are two methods to accomplish this:
The GUI method:
Open Software Center.
Go to the Edit menu and select Software Sources.
The window that appears has five (5) tabs across the top.
Go to the Other Software tab.
Make sure that both options are ticked.
Select close and then hit Reload. If you have made a mistake choose Revert instead.
The Terminal method:
Open the sources.list file:
gksudo gedit /etc/apt/sources.list
Add the Partner repositories by deleting the # from these lines:
deb http://archive.canonical.com/ubuntu maverick partner
deb-src http://archive.canonical.com/ubuntu maverick partner
Save and close the file.
Resynch the index files from their sources:
sudo apt-get update
Installing media from a CD-ROM or DVD is an option as well:
There are two main methods possible:
The GUI method:
Open Software Center.
Go to the Edit menu and select Software Sources.
The window that appears has five (5) tabs across the top.
Tick the box at the bottom of the first tab, titled Installable with CD-ROM/DVD. (Only have this box ticked when you are installing from disc, leave it unticked at all other times. If you do not, it will generate erroneous messages during other installs.)
The Terminal method:
You can mount the contents of the disc. You can then view them through the file manager or Terminal. (Mounting the disc makes it accessible to the system by making it part of the filesystem. It means that the programs can view as if it was another random directory.)
Use the command (Where <drive name> is the drives identifier name under Ubuntu. i.e. cdrom0):
mount /media/<drive name>
From this point you can run the list, run, and install commands as needed.