146

I am about do move a server from one Ubuntu box to another. I'm not cloning the old box to the new; I'm creating a new system and will move data as needed. I want to install all the software that I have on the old box on the new one.

Is there a simple way to find the history of all the "sudo apt-get install" commands I have given over time? That is, dpkg -l shows me all the packages that have been installed, but not which top-level package installed them. If there is a way for dpkg to give me the installing package, I can find the unique ones there; otherwise, I want something else to say "you installed these 24 packages".

raphink
  • 13,027
Paul Hoffman
  • 2,384

9 Answers9

134

The apt history is in /var/log/apt/history.log as said in a comment above. That said, this will not list packages that were installed manually, using dpkg or GUIs such as gdebi. To see all the packages that went through dpkg, you can look at /var/log/dpkg.log.

raphink
  • 13,027
24

You can list packages whose installation has been explicitly requested with apt-mark.

apt-mark showmanual

In case you're running an ancient release of Debian, here's a manual way.

The following command gives the list of packages whose installation was requested, whether manually or automatically. Unless you're in the middle of (de)installing packages, this is the list of installed packages.

dpkg --get-selections | sed -n 's/\t\+install$//p'

The following command gives a superset of automatically installed packages:

</var/lib/apt/extended_states awk -v RS= '/\nAuto-Installed: *1/{print$2}'

Putting it all together, the following command lists manually installed packages:

comm -23 <(dpkg --get-selections | sed -n 's/\t\+install$//p') \
         <(</var/lib/apt/extended_states \
           awk -v RS= '/\nAuto-Installed: *1/{print$2}' |sort)
9

http://www.debianadmin.com/clone-your-ubuntu-installation.html

and /var/adm/apt/history.log

M_1
  • 373
5

I'm also "greping" tar.gz-ed history files this way:

zgrep -E "Commandline: apt(|-get) install" /var/log/apt/history.log*

If you need timestamp too, just add an extra parameter -B1.

CraZ
  • 218
4
grep -i "Commandline" /var/log/apt/history.log

Shows all the packages you've installed using: sudo apt-get install xxxxx

agc
  • 111
3

Instead of tac / head combination, it is better to use tail (for last 25 lines):

tail -n 25 /var/log/apt/history.log
Integer
  • 139
0

Getting an uncluttered list turned out to be a fair bit more complicated than I imagined. In the end, I have wrapped it up in a bash script (export-custom-packages). Have a look and use it if you wish. It

  • scans the Apt history.log as well as the archived logs
  • lists only those packages which have been installed manually
  • excludes packages which have been installed, then uninstalled
  • creates and updates a separate log file for these packages, which prevents them from dropping off the radar once the archived Apt logs are purged.

"Setup":

sudo curl -o /usr/local/bin/export-custom-packages https://gist.githubusercontent.com/hashchange/7ec8185b2fce93b5ac490f4ae0809bda/raw/21b0646475da7cfeb5b7c7703b2238b336dfa3d7/export-custom-packages
sudo chmod +x /usr/local/bin/export-custom-packages

Usage: See export-custom-packages --help.

The annotated code is on Github.

0

The other answers helped but gave me too much output. To cut down on the output, I started with apt-mark showmanual as in this answer, and then filtered out packages originally installed (see this answer for how to get a list of packages originally installed; I'm using ubuntu 18.04.2 hence the link below).

BASE_PACKAGES_MANIFEST=http://releases.ubuntu.com/18.04.2/ubuntu-18.04.2-desktop-amd64.manifest
REMOVE_VERSIONS_REGEX='[0-9][.-][0-9][.-][0-9]|[0-9][.-][0-9]|[0-9]'
paste  <( apt-mark showmanual ) <( apt-mark showmanual | sed -r "s/$REMOVE_VERSIONS_REGEX//g" ) |
    grep -vf <( curl $BASE_PACKAGES_MANIFEST | cut -f1 | sed -r "s/$REMOVE_VERSIONS_REGEX|:amd//g" ) |
    cut -f1 |
    sort |
    uniq

The script filters out packages that were in the original manifest by doing a version-independent comparison, so that upgraded packages don't appear in the list. I ended up with a list of about 60 packages.

The other way I like is this answer that searches all the apt logs.

TooTone
  • 103
-1

To get the list of most recent installed packages in descending order, I like using (e.g. 25 lines):

tac /var/log/apt/history.log |head --lines=25