Friday, May 3, 2024
9
rated 0 times [  9] [ 0]  / answers: 1 / hits: 12781  / 2 Years ago, fri, august 12, 2022, 11:21:25

I would like to get a list of packages installed on one system and install all of them on another system.



I know that dpkg --get-selections can give me a list of all installed packages which I can pipe into dpkg --set-selections on the target system. However, some of the installed packages are ones that I built myself locally (using e.g. checkinstall) and are not available from the repositories. The dpkg --set-selections process will fail when it is unable to find these packages in the repositories.



So is there a way I can filter the list generated by dpkg --get-selections so that it only contains packages whose currently-installed version is available in my current repositories?


More From » package-management

 Answers
6

I believe Software Center has a feature for syncing between computers these days. If that handle missing packages correctly, it could solve your problem.



The issue here is that dpkg isn't aware of repositories, only installed packages. You can find out if a package is available in a repository by running apt-cache policy $package. If you see a repository in the Version Table, it's available there.



So, how about this?. It's slow, but should work:



dpkg --get-selections '*' 
| while read line; do
apt-cache policy $(echo "$line" | cut -f1 )
| grep -q 'http://'
&& echo "$line"
done

[#39151] Sunday, August 14, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
doredtness

Total Points: 153
Total Questions: 113
Total Answers: 106

Location: South Georgia
Member since Fri, Nov 13, 2020
4 Years ago
;