I tried upgraded my Lubuntu 18.10 system to 19.04 using the standard GUI which runs the do-release-upgrade
command. It got most of the way through the installation, installing all the packages. However, it failed before making it to the clean-up section. This has resulted in an unfortunate problem where many of the applications that were deprecated are installed alongside their replacements.
This is obvious when looking at the system tray:
You can see two network tray icons (for two different program instances) and two power icons. In the applications menu, there are many sets of duplicate programs, i.e. two "Additional Drivers".
My question is how can I remove these deprecated applications from my system? Is there a simple command I can run? If I have to remove each one individually, how can I know which ones were deprecated and which ones are current?
To remove an item from quick launch right click on the icon and select Remove from quicklaunch.
https://manual.lubuntu.me/5/5.1/lxqt-panel.html – Karlom Jun 24 '19 at 07:25apt autoremove
? Notice that an icon can stay on the menu while the package is gone. So you probably need to remove them manually anyway. – Karlom Jun 24 '19 at 16:42ps aux | grep nm-
outputs two processes,nm-applet
&nm-tray
. If I kill thenm-applet
process, that icon disappears. They both do the exact same thing, but I believe thenm-applet
is from the older distro version. – Dennis Jun 25 '19 at 03:56