Rsnapshot: Difference between revisions
From DWIKI
m (→Crontab) |
mNo edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
=Links= | |||
*[http://www.rsnapshot.org/ Homepage] | *[http://www.rsnapshot.org/ Homepage] | ||
=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 20: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.