I have installed Ubuntu on a new laptop and I'm trying to learn how to use Linux. While searching the software store and installing several programming tools and then uninstalling them I have some leftover applications. One is called Login Window, another is Previews control and last but not least is Qt5 settings. All three are functional but I do not know how to uninstall them. I have tried using the terminal and commands for this received from ask.com. These three applications do not show up in the software app.
After reviewing the suggestions that were posted overnight I ran apt-get autoremove --dry-run
. The return was
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
sudo apt-get autoremove
— but you should not do it immediately! First read my answer on this page: https://askubuntu.com/a/1312081/1157519 and study the question and other answers too. You will learn that this is a very useful command, which however sometimes can have unexpected results (like breaking everything). But if you learn to use the--dry-run
or, the shorter-s
option with it, you can use it safely. – Levente May 07 '21 at 02:19