Full System backup & restore


Full System backup: 


sudo su
cd /
tar -cvpzf backup.tar.gz --exclude=/backup.tar.gz --one-file-system / 


Full system, restore : 

sudo su
cd /
tar xvzf backup.tar.gz





Comments