HomeLinuxHow one can Take away Lately Put in Packages on Ubuntu

How one can Take away Lately Put in Packages on Ubuntu


Ubuntu is a widespread Linux distribution recognized for its ease of use, stability, and user-friendly method. One of many issues that makes Ubuntu really easy to make use of is its apt package deal administration system, which lets you simply set up, replace, and take away software program packages in your Ubuntu system.

On this article, we are going to present you the way to uninstall or take away lately put in software program packages on Ubuntu utilizing the graphical person interface (GUI) and the command line.

Uninstalling Lately Put in Packages Utilizing GUI

Probably the most easy and user-friendly technique to uninstall or take away recently-installed packages on Ubuntu is by using the Ubuntu Software program Middle, as this intuitive method permits even these unfamiliar with the command line to effortlessly handle their software program installations.

1. First, click on on the “Actions” button, usually located on the top-left nook of your display, after which sort “Ubuntu Software program” within the search bar to launch the Software program Middle.

Ubuntu Software Center
Ubuntu Software program Middle

2. Inside the Software program Middle, choose the “Put in” tab discovered within the prime menu, which is able to current you with a complete record of all functions and packages presently put in in your Ubuntu system.

List of Installed Packages
Checklist of Put in Packages

By default, the Software program Middle shows packages in alphabetical order. To uninstall the recently-installed packages, click on on the “Uninstall” button to start out the package deal elimination course of.

Uninstall Package in Ubuntu
Uninstall Package deal in Ubuntu

As soon as executed, you’ll obtain a notification confirming the profitable elimination of the package deal.

Uninstalling Lately Put in Packages Utilizing CLI

If you happen to choose to make use of the command line, you too can uninstall or take away recently-installed packages on Ubuntu by following under these steps.

1. Launch a terminal window, and execute the next apt command to view the record of all recently-installed packages. Right here, the tail command is used to show the final 10 traces of a file.

$ sudo apt record --installed | tail -n 10

It will record the ten most recently-installed packages.

List Recently Installed Packages
Checklist Lately Put in Packages

To uninstall a selected package deal, use the apt take away command adopted by the package deal title.

$ sudo apt take away <package-name>

Change <package-name> with the title of the package deal, you wish to uninstall.

Remove Package in Ubuntu
Take away Package deal in Ubuntu

If you wish to take away a number of packages without delay, you possibly can record them separated by areas as proven.

$ sudo apt take away package1 package2 package3

To take away a package deal utterly, together with all of its dependencies, run the next command:

$ sudo apt purge <package-name>

After eradicating packages, you should utilize the apt autoremove command to uninstall any routinely put in packages which can be not required as dependencies.

$ sudo apt autoremove

To liberate disk house, you possibly can clear the package deal cache with the next command.

$ sudo apt clear
Conclusion

On this article, we’ve got proven you the way to uninstall or take away recently-installed packages on Ubuntu. Now we have proven you the way to do that utilizing each the GUI and the command line.

We hope this text has been useful. In case you have any questions, please be at liberty to depart a remark under.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments