문제

I have a machine that has a bunch of user installed packages on top of a fresh Ubuntu 12.04 LTS install. I'd like to make a few machines than are essential clones, but manually looking up all the packages would be very burdensome.

Is there some way I can output a list of all user-installed packages and easily move that into a shell script that can then be run on other fresh Ubuntu installs?

도움이 되었습니까?

해결책

This should be a start

sudo dpkg --set-selections < (ssh othermachine dpkg --get-selections)

Also consider

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top