Restoring Linux: from backup, using Tar

Restoring Linux: from backup, using Tar

The principle is to make a single archive containing all files on the hard disk to make a backup. Under Linux, it is possible to access all the files and modify them even if they are in use. It is theoretically not necessary, therefore, to run on a Live-CD for backup or restore. In this article we will show you how to create and restore your archive, using tar.

Prerequisites 

Before doing the backup, ensure not to include useful files:

  • Empty your recycle bin

  • If you want a system backup, do not add personal documents.
  • Also empty the fitness cache folder: When downloading a packet, it remains on the disk, they must be abolished to win (a lot) of space. For this, type in a terminal:

sudo aptitude clean

It is very important if you follow this trick directly from the system restore (no Live-CD for example) not to use other software during the backup: do not modify files on the disk whilst reading tar.

The best thing to do is the backup after installing the system. Once the software is installed and updated like this, the system is clean.

Backup

To get full access to system files, let us root user by typing in a terminal:

sudo su

Then go to where you want to create the archive: here we take the root of the drive: /

cd /

We can create our archive using the following command:

tar cvpzf backup.tgz --exclude=/backup.tgz --exclude=/lost+found   --exclude=/media 

/

Explanations:

  • cvpzf: what are the options: to create (c) showing an archive (v) the scroll on the screen. Each file will retain its permissions (p) using gzip (z) to create the file (f) backup.tgz.
  • The records and files after - exclude / are the records that we do not want to include in the archive:
    • 1.backup.tgz: we can not of course include the archive itself failing to create a loop ...
    • 2. / lost + found, these files are not used to much.
    • 3. / media: we must not include the other file systems.
    • 4. As we want to save, it puts "/" to include the root file system.

Run the command and then wait as it might take time. At the end, you end up with a file backup.tgz in the root file system containing all the files in "/" we have not excluded.

Remarks

  • You can also use gzip Bzip2 instead: this will cause a compression of larger files (an archive smaller) but the process will take longer.
  • To this solution, just replace "z" with "j" in the options, and name the archive so that it ends with. "Tar.bz2", like this:
tar cvpjf backup.tar.bz2 --exclude=/backup.tar.bz2 --exclude=/lost+found --exclude=/media /

Restoring

Here be careful: handling below replace each file with their "counterpart" in the archive, so be sure what you do.

Backup.tgz Place the file in the root file system, then put in as root (sudo su) and put in the root (cd /)

  • This is the command to restore any type:
tar xvpfz backup.tgz -C /
  • Or in the case of using Bzip2 to replace gzip:
tar xvpfj backup.tar.bz2 -C /

Explanations:

options: 
x: to extract. 
-C: to use the current directory (/) to extract the files. 

To restore, type the command. Then press enter and wait until the process finishes.

Important to note one thing: if you have excluded files (eg / lost + found), you must recreate them with the command

mkdir /lost+found

That is: after a system reboot, you'll have a system in the same condition as when creating the backup!

Need more help with Linux? Check out our Forum!
 
Around the same subject

Linux