linux

Centos -backup

sysman 2020. 12. 29. 15:21

(백업)

full backup(풀백업)

#tar -g /temp/backup.list -cvzf /temp/full_backup.tar.gz .

 

Incremental backup (증분백업)

#touch file{1..10}

#tar -g /temp/backup.list -cvzf /temp/full_Incre1.tar.gz .

#touch file{100..110}

#tar -g /temp/backup.list -cvzf /temp/full_Incre2.tar.gz .

 

(복구)

#mkdir /home/user01

#tar -g /temp/backup.list -xvzf /temp/full_backup.tar.gz -C /backup

#tar -g /temp/backup.list -xvzf /temp/Incre1.tar.gz -C /backup

#tar -g /temp/backup.list -xvzf /temp/Incre2.tar.gz -C /backup

 

(확인)

[root@server2 temp]# ls -als

total 20

0 drwxr-xr-x.  2 root root  103 Dec 29 01:14 .

4 dr-xr-xr-x. 19 root root 4096 Dec 29 01:14 ..

4 -rw-r--r--.  1 root root  236 Dec 29 01:14 backup.list

4 -rw-r--r--.  1 root root 2444 Dec 29 01:12 full_backup.tar.gz

4 -rw-r--r--.  1 root root  306 Dec 29 01:13 full_Incre1.tar.gz

4 -rw-r--r--.  1 root root  343 Dec 29 01:14 full_Incre2.tar.gz

 

[root@server2 backup]# tar -g /temp/backup.list -xvzf /temp/full_backup.tar.gz -C /backup

./

./anaconda-ks.cfg

./backup-full.tar.gz

./file1

./file2

[root@server2 backup]# ls -als

total 12

0 drwxrwxrwx.  2 root root   81 Dec 28 22:50 .

4 dr-xr-xr-x. 19 root root 4096 Dec 29 01:14 ..

4 -rw-------.  1 root root 1713 Dec 28 22:38 anaconda-ks.cfg

4 -rw-r--r--.  1 root root 1077 Dec 28 22:49 backup-full.tar.gz

0 -rw-r--r--.  1 root root    0 Dec 28 22:50 file1

0 -rw-r--r--.  1 root root    0 Dec 28 22:50 file2

[root@server2 backup]# tar -g /temp/backup.list -xvzf /temp/full_Incre1.tar.gz -C /backup

./

./file1

./file10

./file2

./file3

./file4

./file5

./file6

./file7

./file8

./file9

[root@server2 backup]# ls -als

total 12

0 drwxrwxrwx.  2 root root  186 Dec 29 01:13 .

4 dr-xr-xr-x. 19 root root 4096 Dec 29 01:14 ..

4 -rw-------.  1 root root 1713 Dec 28 22:38 anaconda-ks.cfg

4 -rw-r--r--.  1 root root 1077 Dec 28 22:49 backup-full.tar.gz

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file1

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file10

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file2

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file3

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file4

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file5

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file6

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file7

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file8

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file9

[root@server2 backup]# tar -g /temp/backup.list -xvzf /temp/full_Incre2.tar.gz -C /backup

./

./100

./101

./102

./103

./104

./105

./106

./107

./108

./109

./110

[root@server2 backup]# ls -als

total 16

4 drwxrwxrwx.  2 root root 4096 Dec 29 01:13 .

4 dr-xr-xr-x. 19 root root 4096 Dec 29 01:14 ..

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 100

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 101

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 102

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 103

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 104

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 105

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 106

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 107

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 108

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 109

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 110

4 -rw-------.  1 root root 1713 Dec 28 22:38 anaconda-ks.cfg

4 -rw-r--r--.  1 root root 1077 Dec 28 22:49 backup-full.tar.gz

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file1

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file10

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file2

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file3

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file4

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file5

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file6

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file7

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file8

0 -rw-r--r--.  1 root root    0 Dec 29 01:13 file9

[root@server2 backup]#

 

'linux' 카테고리의 다른 글

centos teaming 티밍 - activebackup  (0) 2020.12.31
centos - 초기세팅  (0) 2020.12.30
centos - postfix  (0) 2020.12.28
centos -dns 서버 설치  (0) 2020.12.28
Centos 8 - DB 설치  (0) 2020.12.27