Linux:Backup em Linux: Difference between revisions

From Wiki
No edit summary
No edit summary
Line 18: Line 18:
   
   
  find . | xargs bzip2 -9 -v $1
  find . | xargs bzip2 -9 -v $1
== Ver também ==
* [[Linux:Comando Awk]]
* [[Linux:Dicas sobre RPM]]
* [[Linux:Comando Xargs]]
*[[Tecnologias|  Mais Artigos sobre outras Tecnologias]]
*[[Apache HTTP Server|  Mais Artigos sobre Apache HTTP Server]]
*[[Linux|  Mais Artigos sobre Linux / UNIX / AIX]]
[[Category:Linux]]
[[Category:Backup]]

Revision as of 22:56, 5 February 2013

Backup de um Servidor Linux em uma linha de comando apenas

Realizando o Backup de um servidor Linux apenas uma linha de comando.

Backup dos arquivos em um arquivo Tar

tar cvpzf backup20081130.tgz --exclude=/proc --exclude=/lost+found --exclude=/backup20081130.tgz --exclude=/mnt --exclude=/sys --exclude=/data --exclude=/var/www/ /


Backup dos arquivos alterados no diretório home no dia anterior para um diretório de backup

/usr/bin/find /home -type f -mtime -1  -exec cp -v {} /Backup/


Podemos também fazer a compactação destes arquivos

cd /Backup/

find . | xargs bzip2 -9 -v $1

Ver também