2012年12月14日 星期五

[ubuntu] 使用rsync備份

1.裝rsync
apt-get install rsync

2.修改/etc/default/rsync
RSYNC_ENABLE=false --> RSYNC_ENABLE=true

3.修改 rsync 設定檔
vim /etc/rsyncd.conf


log file=/var/log/rsyncd.log
[Home]
path = /backup/Document
auth users = hw
uid = tsry
gid = tsry
secrets file = /etc/rsyncd.secrets
read only = no
strict modes = false #非root 必加

4.設定hw的帳號密碼
vi /etc/rsyncd.secrets
hw:hw1

PS. 注意權限和擁有者

5.啟動rsync
/etc/init.d/rsync start

測試






6.設定要登入的密碼
vim /tsry/rsyncd.secrets
內容只需打密碼
hw1





權限要設為 600,否則無法備份成功!

開始備份
rsync -avHS --numeric-ids --delete --password-file=/tsry/rsyncd.secrets /tsry/Documents/MyDocuments hw@127.0.0.1::Home



沒有留言:

張貼留言