I'm seeing a potentially problematic issues here when I use the command line:
dpkg -l | grep macchanger
It would list macchanger and the version with no problems.
I recently uninstalled this buggy version I had via:
apt-get remove macchanger
Then reinstalled it but I manually compiled and installed it from sources from GitHub. Now when I use:
dpkg -l | grep macchanger
I get absolutely nothing and the issue is that I want to be able to keep track of the package.
checkinstall
is what you are looking for... http://askubuntu.com/questions/87111/if-i-build-a-package-from-source-how-can-i-uninstall-or-remove-completely – Elder Geek Nov 29 '16 at 20:31dpkg -l *macchanger*
. – heynnema Nov 30 '16 at 01:45