Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. ## must be root
  2. Sudo su
  3.  
  4. ## navigate to root folder
  5. cd /
  6.  
  7. ## Exclude unnecessary folders and start backup
  8. tar cvpzf backup.tgz --exclude=/proc --exclude=/lost+found --exclude=/backup.tgz --exclude=/mnt --exclude=/sys /
  9.  
  10. ## restoration
  11. tar xvpfz backup.tgz -C /
  12.  
  13. ## create excluded folders
  14. mkdir proc
  15. mkdir lost+found
  16. mkdir mnt
  17. mkdir sys