Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed 

ubuntu apt-get list installed packages and removal

// description of your code here

will give you a nice list of installed packages...
apt-get install apt-show-versions

apt-show-versions | sort


best way to remove all traces of them is
apt-get --purge remove packagename

(I got fancy and did apt-get --purge remove php5* which removed all of em)
« Newer Snippets
Older Snippets »
1 total  XML / RSS feed