得到已安装软件列表文件
dpkg -–get-selections | grep -v deinstall > ubuntu.files
保存在另一个分区或者gmail邮箱之类安全的地方。下次重装ubuntu 的时候,执行
sudo apt-get update
sudo apt-get dist-upgrade
dpkg -–set-selections < ubuntu.files
以下步骤并未自己试验,不敢妄语,特摘原文如下:
Now you’ve told your system what it needs to install, so let’s install it all.
sudo dselect
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.
这个命令直接将该列表文件发到邮箱中
dpkg -–get-selections | grep -v deinstall > ubuntu-files; cat ubuntu-files | mailx -s “ubuntu-files” 自己的email地址
dpkg -–get-selections | grep -v deinstall > ubuntu.files
保存在另一个分区或者gmail邮箱之类安全的地方。下次重装ubuntu 的时候,执行
sudo apt-get update
sudo apt-get dist-upgrade
dpkg -–set-selections < ubuntu.files
以下步骤并未自己试验,不敢妄语,特摘原文如下:
Now you’ve told your system what it needs to install, so let’s install it all.
sudo dselect
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.
这个命令直接将该列表文件发到邮箱中
dpkg -–get-selections | grep -v deinstall > ubuntu-files; cat ubuntu-files | mailx -s “ubuntu-files” 自己的email地址
本文介绍了一种在Ubuntu系统中备份已安装软件的方法,并提供了如何使用这些备份文件进行软件恢复的步骤。通过简单的命令行操作即可完成软件列表的备份与恢复。

被折叠的 条评论
为什么被折叠?



