This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
backuppc [2018/12/17 21:15] – [Install BackupPC requirements] admin | backuppc [2018/12/19 09:09] (current) – [Locked out from root access (no sudo possible anymore)] admin | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== BackupPC DS 413j ====== | + | ====== BackupPC |
Based on this guide https:// | Based on this guide https:// | ||
Line 27: | Line 27: | ||
===== Add User ===== | ===== Add User ===== | ||
- | < | + | Add '' |
- | / | + | |
- | </ | + | |
===== Change home dir ===== | ===== Change home dir ===== | ||
Line 39: | Line 37: | ||
</ | </ | ||
+ | ===== Ping Command ===== | ||
+ | |||
+ | < | ||
+ | $Conf{PingCmd} = 'sudo $pingPath -c 1 -w 3 $host'; | ||
+ | </ | ||
+ | |||
+ | ===== Change sudoers file ===== | ||
+ | |||
+ | |||
+ | After root ALL ... add the following in / | ||
+ | < | ||
+ | admin ALL = NOPASSWD: /bin/ping | ||
+ | backuppc ALL = NOPASSWD: /bin/ping | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Watch progress ===== | ||
+ | |||
+ | Client - the machine where data is pulled from | ||
+ | |||
+ | < | ||
+ | watch "lsof -n | grep rsync | egrep ' (REG|DIR) ' | egrep -v '( (mem|txt|cwd|rtd) |/ | ||
+ | </ | ||
+ | |||
+ | Server - your backuppc instance | ||
+ | |||
+ | < | ||
+ | watch "lsof -n | grep rsync | egrep ' (REG|DIR) ' | egrep -v '( (mem|txt|cwd|rtd) |/ | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Locked out from root access (no sudo possible anymore) ===== | ||
+ | |||
+ | Works 8-): | ||
+ | |||
+ | https:// |