备份Ubuntu系统

备份:

1
2
3
4
5
6
7
sudo apt-get autoclean
sudo apt-get clean
sudo apt-get autoremove

su - root

tar -czvPf ubuntu_`date +%Y%m%d_%H`.tar.gz --exclude=/proc --exclude=/mnt --exclude=/media --exclude=/lost+found --exclude=/cdrom --exclude=/sys --exclude=/home/luohanjie/Documents --exclude=/run --exclude=/tmp / > /dev/null

恢复:

1
2
su - root
tar -xzvPf ubuntu*.tar.gz -C /