I am experienced computer user but a newbee to Linux. This is a new installation of Xubuntu 14.04 (yesterday) using the "wipe existing OS" feature.
Using the STATUS button in SPM, I can see a list of packages that have not been installed. I am not interested in installing these packages and want to remove them.
In the list of categories in the upper left box, the "Not installed (residual config)" category is NOT found.
When I select a package to delete, the ONLY option available is to install it. How can these unwanted packages be removed?
Any assistance you could provide would be most helpful.
Thanks
These packages are not being held around on your system. What Synaptic does is search through the repositories in your sources, and lists all of the packages that you could download and install. These are in the "Not Installed" category because, well, you haven't installed them. They do not need removed, because they are not there.
For further clarification, the "Not Installed (Residual Config)" category is not showing up because you have not yet removed any additional packages that left config files behind. This means either you haven't removed any packages yet, or you used the --purge
option when removing packages, e.g.
sudo apt-get remove --purge foo
or
sudo apt-get purge foo
If you just do a regular
sudo apt-get remove foo
and package foo
created global config files, those files are not being removed. Therefore, Synaptic sees them and says "Hey, you don't have these packages installed, but there are some left over config files for them." Still, nothing is physically ON your system that you do not want.
No comments:
Post a Comment