Search Google

Sunday, October 28, 2007

取得電腦中已經安裝的套件清單

ls /var/lib/dpkg/info/ | cut -f1 -d. | uniq

以上是適用於ubuntu的路徑。

1 comment:

Miles MH Chen said...

dpkg --get-selections > list
取得安裝的套件名單

dpkg --set-selections < list
把要裝的套件選起來,然後用dselect等等東西安裝就可以了。用來複製安裝過的套件~

(moto前陣子討論的文章)