Guest User

Untitled

a guest
Oct 20th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. cd /tmp/
  2. # 14.10: $ wget http://old-releases.ubuntu.com/releases/utopic/ubuntu-14.10-desktop-amd64.manifest
  3. # 16.04.2: $ wget http://releases.ubuntu.com/releases/xenial/ubuntu-16.04.2-desktop-amd64.manifest
  4. # for 16.10:
  5. wget http://releases.ubuntu.com/releases/16.10/ubuntu-16.10-desktop-amd64.manifest
  6. -q -O - | cut -f 1 > packages.manifest.list
  7. # compare it with the list generated by
  8. dpkg --get-selections | cut -f 1 > packages.installed.list
  9. # from moreutils you can use combine:
  10. combine packages.manifest.list not packages.installed.list > packages.diff.list
  11.  
  12. wget http://releases.ubuntu.com/utopic/ubuntu-14.10-desktop-i386.manifest -q -O - | cut -f 1 > packages.manifest.list
  13.  
  14. IGNORE="language-pack|ubiquity|linux-|locale-|spell-|-help-|hyphen-|l10n|wbrazilian|wfrench|witalian|wportuguese|wspanish|mythes-"
  15. cat packages.diff.list |egrep -v '('$IGNORE')' |less
Add Comment
Please, Sign In to add comment