I would like to load 22.10 "fresh" rather than upgrade 22.04.1 in place. Before I do that I would like to see what packages I've loaded as a guide of what to re-load after the new install. Is there a command to list packages I've installed?
Asked
Active
Viewed 37 times
0
dpkg --get-selections | awk '$2 == "install" {print $1}' > packages.list.save
The package.list.save file contains the packages. Atl least I do it this way in Debian. – nobody Oct 23 '22 at 12:33