
Originally Posted by
f3mto5econd1nter4ction
On ubuntu is there a way (from terminal) to print out a list of objects that can be removed using the sudo apt-get remove 'AppNameHere' command? Some of the software pop up on my show applications tab while others don't.
Is the name for these objects applications? Since they don't appear under the tab that bears the name.
Cheers
Anything installed can be removed using apt or apt-get, though doing so may remove wanted applications as well due to dependency issues. I don't really comprehend exactly what you are asking for here.
A possible help tip for you when using "apt" or "apt-get" with the remove option is to test first with a simulation only. To do this use the "-s" (simulation only) switch.
For example if you want to remove "firefox" and check if anything else will be affected ...
Code:
apt-get remove -s firefox
The "-s" (in bold text for clarity/visibility) causes the command to run as a simulation only, NOTHING will be removed but you will see what will happen before you run the command for real (without the "-s" switch).
Just an extra note: the simulation switch (-s) can be used to test any action undertaken with apt or apt-get. I regularly use it with the autoremove option which in the past has caused some dependency headaches here; also with the install option to see what extra packages are being added when installing an application before I actually install anything.
Hope that is of some help for you. Regards, yeti.
Bookmarks