설치했던_프로그램_다시_한꺼번에_설치하기 - pinedance/codenote GitHub Wiki
우분투에 설치된 모든 프로그램 목록을 문서로 출력
dpkg --get-selections | grep -v deinstall > 설치내역.txt
만약 우분투를 재설치한 후 이전에 설치했던 프로그램들을 설치내역대로 다시 설치
dpkg –-set-selections < 설치내역.txt
From Here
우분투에 설치된 모든 프로그램 목록을 문서로 출력
dpkg --get-selections | grep -v deinstall > 설치내역.txt
만약 우분투를 재설치한 후 이전에 설치했던 프로그램들을 설치내역대로 다시 설치
dpkg –-set-selections < 설치내역.txt
From Here