Guides 11792 Published by

To install Synaptic Package Manager on Ubuntu 22.04 LTS and have a friendly GUI for browsing, installing, and maintaining packages from the command line, follow these steps: update your system with sudo apt update && sudo apt upgrade -y, enable the Universe repository with sudo add-apt-repository universe, install Synaptic with sudo apt install synaptic -y (or manually install a missing dependency like libqt5core5a if needed), and launch it from the Dash by typing "Synaptic" in the search bar.



Install Synaptic Package Manager on Ubuntu 22.04 LTS

Synaptic Package Manager lets users browse, install, and maintain packages from the command line with a friendly GUI. If the default software center feels too restrictive or you need more granular control, adding Synaptic is a quick fix.

Step 1: Update Your System

sudo apt update && sudo apt upgrade -y

Running this ensures that the package lists are fresh and that any pending security updates won’t interfere with the installation. A stale repository often causes “unable to locate package” errors later on.

Step 2: Enable the Universe Repository

Synaptic lives in Ubuntu’s universe component, which is disabled by default on minimal installations.

sudo add-apt-repository universe

If you skip this, apt will simply not find synaptic, and you’ll waste time blaming your network.

Step 3: Install Synaptic

sudo apt install synaptic -y

The -y flag answers “yes” to every prompt—great for a script or if you just want the GUI launched immediately. During installation, note that synaptic pulls in several dependencies; one common hiccup is a missing libqt5core5a. If it shows up as an error, add it manually:

sudo apt install libqt5core5a

Step 4: Launch Synaptic from the Dash

Click the Ubuntu icon → type “Synaptic” and hit enter. The first run may prompt for a password; this is normal because Synaptic manages system packages.

Real‑world tweak: Handling Broken Packages

A frequent scenario on fresh installs: after adding new PPAs, synaptic shows a red “broken packages” banner. A user once reported that the issue vanished only after running:

sudo apt --fix-broken install

This command resolves dependency loops that other tools silently ignore. Once fixed, Synaptic displays all available packages again.

Optional: Add Synaptic to the Quick Launch Bar

For power users who want instant access:

  1. Right‑click the panel → Add to Favorites.
  2. Search for “Synaptic” in the dash and click Add to Favorites. Now you can launch it with a single click, no need to hunt through menus.

If Synaptic still refuses to install, double‑check that the apt sources list contains an entry ending in /jammy/main. A mis‑typed repository line is the most common culprit. Once you correct that, the installation process should complete without further fuss.