Is CCleaner beneficial for Ubuntu?

I want use CCleaner on Ubuntu 10.04. But I do not know whether it is necessary or not.

Is it necessary? Are there any benefits from using it?


CCleaner is a windows application, even if you run it with Wine, it won't make any sense to do so because it removes files based on their file paths which is totally different on Ubuntu. Other programs ran by CCleaner have similar issues and registry cleaning will only affect the wine settings of CCleaner.

So, in no way is CCleaner beneficial on Ubuntu.


CCleaner is a Windows program so it has no effect on Ubuntu. If you want to clean up your system use BleachBit. It is in the Ubuntu Software Centre. This program also cleans your Firefox directories and cookies.


Bleachbit is the equivalent. Watch your settings (especially with browser settings). Also run:

sudo apt-get clean

This command removes previously downloaded archives which can safely be removed. Those archives are only used for faster reinstallations of programs.

You can also save a tonne of space by removing old unused kernels. You can save further space by uninstalling LibreOffice / OpenOffice.org and installing Abiword if you only use writer, install gnumeric if you also require spreadsheets.


Here a command to remove by typing (better to copy and paste from here) ALL old unused kernels by typing a single row:

sudo apt-get purge $(dpkg --get-selections | awk '((/^linux-/) && (/[0-9]\./) && (!/'"`uname -r | sed "s/-generic//g"`"'/)) {print $1}')