Anyone that uses Android/iOS will know that uninstalled apps will appear as a list in the Play Store/App Store. Is there a function like this on Ubuntu too? Logging in with an Ubuntu account does not help.
1 Answers
On Ubuntu there's logs for both apt
and dpkg
in /var/log
directory, so all action related to installing and uninstalling go there, however these logs are rotated ( i.e. archived and eventually deleted ). So in short, it's possible to generate a list of items you uninstalled from these logs with a few text processing utilities, but if you need a persistent list, you may want to disable log rotation as well. Beware that on Ubuntu app name and package to which app belongs may differ in format, i.e. something like difference between Firefox for Android and the actual .apk package name. The information in logs contains only package names.
Another thing to be aware of is that phones and tablets sync with cloud. Personal computer operating systems generally do not do that unless configured by sysadmin at an organization. So there's no "list" in the Ubuntu software center as in Play store.

- 105,154
- 20
- 279
- 497
aptitude
(package manager) provides a non-installed list of packages (by group) so why not use it? – guiverc Jun 08 '18 at 07:29