Using Synaptic Package Manager to Download a Package in Linux
Last Updated :
01 Feb, 2021
Synaptic package manager is GTK-based graphical user interface based on Advanced Package Tool, or APT for download or removes packages on Debian based system like Ubuntu. We can download packages by using the apt command, but the GUI interface is always user-friendly and easy to use.
To install synaptic package manager run the following command on terminal
sudo apt-get update
sudo apt install synaptic
Now a synaptic package manager is installed on the system.
You can launch synaptic package manager by using Application launcher and also from terminal to launch synaptic package manager from the terminal run the following command in terminal.
sudo synaptic
Run the synaptic package manager as a root because to update remove install packages we need superuser permissions. After that synaptic package manager is launched
Features of Synaptic Package Manager:
- Install packages
- Reinstall packages
- Upgrade the package
- Remove package
- Complete remove package with configuration files.
Package Installation:
Now let's see how to install the package using the synaptic package manager. Here, we are going to install cowsay package using synaptic package manager cowsay is a funny application on the terminal.
Step 1: To install cowsay search for cowsay in synaptic package manager
Step 2: Now as we see in the figure there is cowsay package with version 3.03+dfsg2-7, To mark for installation of this package right-click on the cowsay package then click on Mark for installation
Step 3: After that our package is select for installation now we have to click on Apply to install the package.
Step 4: After that synaptic package manager will display us the summary of changes on a system like extra space and size of download package and no of packages.
Step 5: Then click on Apply to install the package:
Then the process of package installation will be started and after the package installed the massage Changes applied will be displayed then click on close and close synaptic package manager and enjoy the installed application.

Remove the installed Package:
Now let's see how to remove the installed package.
1) To see installed packages click on the installed packages and
2) Then select which package is to remove in our case we have to remove cowsay package then right-click on it and select the mark for removal.
3) Then click on apply and then the summary will be displayed to us what will be removed and how many spaces will be frees.
After that selected package will be removed and the changes applied successfully the message will be displayed.
Uninstall the synaptic Package Manager:
sudo apt remove synaptic
Similar Reads
How to Install and Configure Synaptic Package Manager in Ubuntu? Synaptic Package Manager is a GUI based package management tool that uses APT (Advanced Package Tool) to installing, updating or removing packages from the Linux system. Some of the feature given by Synaptic Package Manager are: Allow installing, updating or removing packagesUpgrading whole systemSe
1 min read
How to Install a New Package Manager in Linux Linux offers several package managers for software installation, updates, and maintenance. In Linux, every distribution comes with a package manager by default. The Debian distribution comes with APT(Advanced Package Tool), Red Hat, and its derivatives such as CentOS and Fedora use YUM package manag
4 min read
How to Manage Debian Packages in Linux? Debian, one of the oldest and most respected Linux distributions, is renowned for its stability, security, and robust package management system. Managing Debian packages effectively is crucial for maintaining a healthy and well-functioning Linux system. In this comprehensive guide, we will explore e
9 min read
How to Use Package Managers in Linux? APT and YUM Package managers like APT and YUM are essential tools for managing software on Linux systems. They allow you to install, update, and remove packages easily, ensuring your system is up-to-date and secure. APT is commonly used in Debian-based distributions like Ubuntu, while YUM is used in Red Hat-bas
5 min read
How to Manage Packages in Red Hat-based Linux? Package management tools like dnf (Dandified YUM) or yum (Yellowdog Updater Modified) are used to manage packages on Red Hat-based Linux systems. These programs support the installation, removal, and upgrading of software packages on your computer. Typical package management tasks include the follow
4 min read