How to compare what’s installed in this ubuntu pc vs that ubuntu pc

How to compare what’s installed in this ubuntu pc vs that ubuntu pc:

 (dpkg --list | sort > /tmp/thispc.txt) ; (ssh user@thatpc dpkg --list | sort > /tmp/thatpc.txt) ; diff -y /tmp/thispc.txt /tmp/thatpc.txt|less

#ubuntu


This post was originally published publicly on Google+ at 2013-01-01 17:47:34+0800

You may also like...