I have gone through the Dist Usage Utility in Ubuntu and I deleted some folders here and there in my Desktop and also in my Downloads. These included some software packages I had installed earlier.......
I am not very sure whether all the installation points related to these softwares have been cleaned after I have deleted the folders in the Desktop.
Windows ofcourse we have an uninstall utility. But since I dint know a similar way in Ubuntu I just deleted the folders. Is here any command that I can run now to fully scan and remove softwares and packages that have not been properly installed or UNINSTALLED???
locate
- can you give an example? Of course, you can download the sources again, so you can domake install
again. – Volker Siegel Aug 17 '14 at 10:47command -v su2
or so say? – Volker Siegel Aug 17 '14 at 14:30/usr/lib/su2
exists, runlocate -r '.*/su2$'
– Volker Siegel Aug 17 '14 at 14:57su2
actually, it's more a guess. If you have any other idea, just try. Did the command that you installed have the namesu2
? – Volker Siegel Aug 17 '14 at 17:22locate -r '.*/su2$'
, so/usr/lib/su2
exists, is that right? – Volker Siegel Aug 17 '14 at 17:23/usr/local/
- and it may be namedSU2
or similar instead. Look atls -l /usr/local/
– Volker Siegel Aug 17 '14 at 17:29locate -r '.*/SU2$'
andlocate -r '.*/SU2_[^/]+'
will find all related directories, and which you can delete then. Could find things like man pages too, which are not in their separate directories. To find related fies, you could check files last changed in the same minute or so - usels -ltr
– Volker Siegel Aug 17 '14 at 18:33