Rsnapshot: Difference between revisions

From DWIKI
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
==Links==
=Links=
*[http://www.rsnapshot.org/ Homepage]
*[http://www.rsnapshot.org/ Homepage]




==Crontab==
=Crontab=


  2 4 * * * rsnapshot daily
  2 4 * * * rsnapshot daily
  2 3 * * 0 rsnapshot weekly
  2 3 * * 0 rsnapshot weekly
  2 2 1 * * rsnapshot monthly
  2 2 1 * * rsnapshot monthly
=FAQ=
==Copying your rsnapshot archive to another filesystem==
cd /rsnapshots
tar cf - . | cat | (cd /newrsnapshots && tar xbf 1 -)
cpdup, cpio etc fail when there's too many hardlinks: they will run out of memory.
[[Category:Backup]]

Latest revision as of 21:17, 19 April 2022

Links


Crontab

2 4 * * * rsnapshot daily
2 3 * * 0 rsnapshot weekly
2 2 1 * * rsnapshot monthly


FAQ

Copying your rsnapshot archive to another filesystem

cd /rsnapshots
tar cf - . | cat | (cd /newrsnapshots && tar xbf 1 -)

cpdup, cpio etc fail when there's too many hardlinks: they will run out of memory.