得到已安装软件列表文件
[code]dpkg --get-selections | grep -v deinstall > ubuntu.files[/code]
保存在另一个分区或者gmail邮箱之类安全的地方。下次重装ubuntu 的时候,执行
[code]sudo apt-get update
sudo apt-get dist-upgrade
dpkg --set-selections < ubuntu.files[/code]
以下步骤并未自己试验,不敢妄语,特摘原文如下:
Now you’ve told your system what it needs to install, so let’s install it all.
[code]sudo dselect[/code]
This will open up a dselect session. Type ‘I‘ and allow dselect to install of the the packages listed in your ubuntu-files document. When it’s finished, type ‘Q‘ and hit the ENTER key to exit dselect.
Now you’re a lot closer to where you were before.
这个命令直接将该列表文件发到邮箱中
[code]dpkg --get-selections | grep -v deinstall > ubuntu-files; cat ubuntu-files | mailx -s “ubuntu-files” 自己的email地址[/code]