1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-20 06:33:24 +01:00
wiki.mbirth.de/know-how/software/linux/_posts/2010-03-24-sync-package-list.md

33 lines
1.0 KiB
Markdown
Raw Normal View History

2015-04-13 20:20:11 +01:00
---
created: 2010-03-23 17:53:30 +0100
2022-01-23 17:14:59 +00:00
layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2010/03/23/sync-package-list-between-2-pcs.html
2015-04-13 20:20:11 +01:00
tags:
2022-01-23 17:14:59 +00:00
- know-how
- software
- linux
- administration
title: Sync Package List between 2 PCs
toc: false
updated: 2010-03-24 10:39:37 +0100
2015-04-13 20:20:11 +01:00
---
2022-01-23 17:14:59 +00:00
2015-04-13 20:20:11 +01:00
To export a list of all installed packages, you can use the following command:
sudo dpkg --get-selections > selections.txt
But this will loose any `{A}` markers for automatically installed packages and therefore produce a lot of garbage when
dependencies change.
To export only manually installed packages, use `aptitude` like this:
sudo aptitude search '~i!~M' -F '%p install' > selections.txt
(More `aptitude` filterstrings can be found on [their project page](http://algebraicthunk.net/~dburrows/projects/aptitude/doc/en/ch02s03s05.html).)
On the other machine, use the following command to set the new markers:
sudo dpkg --set-selections < selections.txt
2022-01-23 17:14:59 +00:00
Now run `aptitude` and resolve the dependencies.