View Single Post
Saturn's Avatar
Posts: 1,648 | Thanked: 2,122 times | Joined on Mar 2007 @ UNKLE's Never Never Land
#8
Originally Posted by tso View Post
sadly, apt-get purge gives me a error about missing command, or something like that, so i cant really tell it to purge any leftovers related to python-launcher...
I use this quite often (saw it somewhere here in ITt):

Code:
 
### View orphan files:
dpkg --list | grep ^rc | awk '{ print $2; }'

### Clean up the files:
#dpkg --purge $(dpkg --list | grep ^rc | awk '{ print $2; }')
hope it helps.