sh ubuntu debian备份恢复包

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh ubuntu debian备份恢复包相关的知识,希望对你有一定的参考价值。

#A quick way of backing up a list of programs is to run this:

dpkg --get-selections > ~/Package.list
sudo cp -R /etc/apt/sources.list* ~/
sudo apt-key exportall > ~/Repo.keys

#It will back them up in a format that dpkg can read* for after your reinstall, like this:
sudo apt-key add ~/Repo.keys
sudo cp -R ~/sources.list* /etc/apt/
sudo apt-get update
sudo apt-get install dselect
sudo dselect update
sudo dpkg --set-selections < ~/Package.list
sudo apt-get dselect-upgrade -y

#You may have to update dpkg's list of available packages or it will just ignore your selections (see this debian bug for more info). You should do this before sudo dpkg --set-selections < ~/Package.list, like this:
apt-cache dumpavail > ~/temp_avail
sudo dpkg --merge-avail ~/temp_avail
rm ~/temp_avail

以上是关于sh ubuntu debian备份恢复包的主要内容,如果未能解决你的问题,请参考以下文章

sh 使用checkinstall为Debian / Ubuntu创建rkt包

sh 使用来自debian社区的tar完全备份目录。 (可用于完整系统备份)

sh 交换Debian Ubuntu

sh Debian / Ubuntu Tarsnap安装

sh 如何在Debian / Ubuntu上安装PhantomJS

sh 在Debian / Ubuntu Linux上安装Azure CLI