Top/Linux/pdumpfs

pdumpfsはてなブックマーク

毎日のスナップショットを差分で保存するバックアップシステム。

インストール

aptitude install pdumpfs

USBメモリに定期バックアップ

USBメモリをフォーマット&マウント

mkfs.ext3 /dev/sda
mkdir /mnt/usb
mount -t ext3 /dev/sda /mnt/usb

バックアップテスト

pdumpfs --exclude 'cache' /var/www/html /mnt/usb > /var/log/pdumpfs.log 2> /var/log/pdumpfs-error.log

cronに仕込む

vi /etc/cron.daily/pdumpfs
#!/bin/sh

pdumpfs --exclude 'cache' /var/www/html /mnt/usb > /var/log/pdumpfs.log 2> /var/log/pdumpfs-error.log
chmod a+x /etc/cron.daily/pdumpfs

crontab -eでもOK。

関連

差分 一覧