If you are a Ubuntu user, you may face problems with how to manually upgrade packages on my system. This detailed guide provides you with some useful solutions. You can use your terminal window and run a few commands to upgrade the package that needs to be upgraded.
Upgrading packages ensure that your system is safe and secure, free of bugs, and performing at its best.
This write-up aims to provide you with a complete guide to upgrading your Ubuntu system packages.
How to Upgrade Not Upgraded Packages in Ubuntu 22.04?
You can perform the below-mentioned steps to upgrade the required packages on your Ubuntu 22.04 operating system.
Step 1: Refresh System Package List
Ubuntu offers a simple command that will refresh your system packages list. Here is the command:
sudo apt update

In the above output, your system needs to upgrade two (2) packages. Let’s see what those packages are by following the next step.
Step 2: List the Upgradable Package
In Linux-based systems, the “list –upgradable” is a useful option for displaying the list of packages that have not yet been upgraded:
sudo apt list –upgradable

You can view the names of the packages in the given list.
Step 3: Upgrade the Not Upgraded Packages
Using the APT package manager, you can upgrade packages one by one or multiple packages in bulk through a single command, as shown below:
sudo apt install --only-upgrade libgpgme11 libgpgmepp6


Through this command, your system has installed the latest updates, only for the required packages. This practice can improve performance and enhance the security of your Ubuntu system.
Step 4: Verify the Upgradable Package List
Use the command to check if the required packages (i.e., libgpgme11 and libgpgmepp6) have been upgraded on your system:
sudo apt list --upgradable

The message “Listing … Done” on your screen indicates that the upgrade command executed successfully and as a result installed the required package updates on your Ubuntu 22.04.
Step 5: Refresh System Files With Upgraded Packages
To incorporate the new package files and refresh the system repository, it is essential to run the update command in your terminal:
sudo apt update

Upon executing the above command, ensure that you have the message “All packages are up to date” on your Ubuntu terminal.
You have successfully upgraded the not upgraded packages on your Linux-based distributions, including Ubuntu 22.04.
FAQs
Can I upgrade the not upgraded package on Ubuntu 22.04?
Yes, you can manually upgrade packages one by one or in bulk using the command “sudo apt install –only-upgrade [PackageName]”.
Why should I upgrade the not upgraded package on my Ubuntu 22.04?
The developer continuously works on fixing bugs, resolving compatibility issues, and enhancing security features to improve your system’s performance. Therefore, your system must be up to date.
Conclusion
In Ubuntu, you can manually upgrade specific packages that need upgrading through APT. Follow the command syntax “sudo apt install –only-upgrade [PackageName]” to upgrade particular packages on your machine. This post elaborated on the process of how to upgrade not upgraded packages on Ubuntu 22.04.