Okay, I installed a 64MB sized program. Now I'm trying to uninstall it using Terminal:
sudo apt-get purge <program-name>
after running that command, the confirmation message will be:
blah blah blah...
The following packages will be REMOVED:
<program-name>*
After this operation, 3,577 kB disk space will be freed.
Do you want to continue? [Y/n]
Now my question is what the hell is happening here?!
64MB on installation, then 3.5MB after uninstalling???!
apt-cache show <package-name> | grep -i size
. – muru Aug 22 '14 at 14:15sudo apt-get autoremove
to remove orphaned packages which were installed as dependency with your program and no longer needed. – g_p Aug 22 '14 at 14:21