User:Giannoug

(New page: This, someday, may contain my contributions to the Maemo community! :))
Line 1: Line 1:
-
This, someday, may contain my contributions to the Maemo community! :)
+
 
 +
== How to remove unused config files for unistalled programs? ==
 +
 
 +
Open a Terminal (or SSH to your device) and type
 +
 
 +
dpkg -l | awk '/^rc/ {print $2}' | xargs dpkg -P
 +
 
 +
That's it. All your unused config files are now gone!

Revision as of 10:27, 6 January 2010

How to remove unused config files for unistalled programs?

Open a Terminal (or SSH to your device) and type

dpkg -l | awk '/^rc/ {print $2}' | xargs dpkg -P

That's it. All your unused config files are now gone!