Speeding up Ubuntu: How to remove junk filesRemove Residual Config packages
Residual Config packages are usually dependency packages that are left behind after you uninstall a package from your machine.
|
Re: Speeding up Ubuntu: How to remove junk filesClear cached packages
Over time Ubuntu's software system can accumulate unused software packages or temporary files. These temporary files (called caches) contain packages that you have ever installed. The clean command will remove every single cached item. In the terminal run: Code:
sudo apt-get clean Code:
sudo apt-get autoclean Packages can also become unused over time. If a package was installed to assist with running another program - and that program was subsequently removed - you no longer need the supporting package. You can remove it with autoremove. In the terminal run: Code:
sudo apt-get autoremove |
Re: Speeding up Ubuntu: How to remove junk filesRemove unnecessary locale data
Install localepurge Code:
sudo apt-get install localepurge Quote:
|
Re: Speeding up Ubuntu: How to remove junk filesRemove "orphaned" packages
"deborphan" determines which packages have no other packages depending on their installation, and shows you a list of these packages. It is most useful when finding libraries, but it can be used on packages in all sections... Install "deborphan": Code:
sudo apt-get install deborphan Code:
sudo deborphan | xargs sudo apt-get -y remove --purge |
All times are GMT -6. The time now is 09:09 AM. |