Skip to content

Instantly share code, notes, and snippets.

@zhaostu
Created October 21, 2012 19:16
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save zhaostu/3928156 to your computer and use it in GitHub Desktop.
Save zhaostu/3928156 to your computer and use it in GitHub Desktop.
One-liner to remov all residual config packages in Ubuntu
# Remove all the packages with residual configuration.
# http://stuzhao.blogspot.com/2012/07/removing-all-residual-config-packages.html
sudo apt-get remove --purge `dpkg -l | grep '^rc' | awk '{print $2}'`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment