I was deleting all previous Eclipse versions as per an answer I read, so I used sudo apt-get autoremove eclipse*
. It said it would be about 40 Mb of files to uninstall, so I agreed believing it would work on the intended scope.
The expected behavior is that it removes the application itself and also its dependencies. In my case, it's begun to delete some linux-headers
, python
packages, etc. which I don't think are related to Eclipse, and it's got me worried. Help?
linux-headers
and important-sounding stuff flied across the screen. Thanks, I'll look into the behavior of thepackage*
argument. – JoseHdez_2 Aug 01 '16 at 16:33linux-headers
and other packages are probably from old kernels, no longer in use. And thepackage*
argument is pattern matching which means "anything that starts with 'package'". – wjandrea Aug 01 '16 at 16:35