Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
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.
|
#2
|
|||
|
|||
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 |
#3
|
|||
|
|||
Re: Speeding up Ubuntu: How to remove junk filesRemove unnecessary locale data
Install localepurge Code:
sudo apt-get install localepurge Quote:
|
#4
|
|||
|
|||
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 |
Tags: ubuntu |
Thread Tools | |
Display Modes | |
|
|