2021-12-27 00:00
How do I find all installed packages that are not from the official Ubuntu repository?
Some of the packages might have been installed with dpkg -i ....
dpkg -i ...
답변일: 2021-12-27 00:00
There is a utility called apt-show-versions in the Ubuntu repo that shows you the versions of programs in the Ubuntu archive. So running
apt-show-versions
apt-show-versions | grep 'No available version'
would pick up anything that wasn't installed by a repository.