I installed software using the sudo apt-get install [program name] command in the Terminal.
How should I go about uninstalling said program via. Terminal?
What should I specifically type in the Terminal?
- The program does not appear in the Installed tab of Software Center
- It exists in the Software Center, but according to Center it hasn't been installed
- The program operates fine though when installed using above command
autoremoveinsudo apt-get autoremove? – user604803 Oct 16 '16 at 02:37sudo apt-get remove nameOfProgramthis is the output:Reading package lists... Done Building dependency tree Reading state information... Done Package 'freecad' is not installed, so not removed 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.– user604803 Oct 16 '16 at 02:39sudo apt-get purge [nameofApp]? – user604803 Oct 16 '16 at 03:58purgein the second one... – mook765 Oct 16 '16 at 04:05Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package [programName]– user604803 Oct 16 '16 at 14:55