3

I've got a question regarding how to delete all source codes that I've downloaded.

I think it just consumes a lot of space without any benefit yet!

Thanks in advance :)

LiveWireBT
  • 29,597

2 Answers2

3

I suggest you read this Community Documentation article: Recover Lost Disk Space

From link:

How to find lost space

To check the amount of space being used for package storage, run:

du -h /var/cache/apt/

How to Fix It

There are several system commands you can use to reduce or eliminate the number of locally stored packages.

  • Remove all expired packages from /var/cache/apt/archives and /var/cache/apt/archives/partial that are no longer available for download:

    sudo apt-get autoclean
    

    "Not available for download" does not mean the user should save them - normally these files have been replaced or are no longer needed.

  • Remove all the packages from /var/cache/apt/archives and /var/cache/apt/archives/partial folders:

    sudo apt-get clean
    
  • Remove unneeded dependencies which are no longer needed:

    sudo apt-get autoremove
    

Synaptic custom filter practice can also help for search packages:

You can use this method for searching custom packages, but I DON'T RECOMMEND IT as universal method for cleaning.

Settings -> Filters

You can choose different Statuses for New Filter :

New Filter with Status

And create different Properties :

New Filter with Properties

Good Luck!

LiveWireBT
  • 29,597
swift
  • 3,291
2

I use the Janitor option in Ubuntu Tweak that gets rid of a lot of extra space. Maybe this will delete your source files as well as it deletes all of the Update managers cached files.

Meer Borg
  • 5,003