Based on this guide https://wiki.qnap.com/wiki/How_to_install_the_BackupPC_application
chmod +x ./syno-mvkw-bootstrap_1.2-7_arm-ds111.xsh
./syno-mvkw-bootstrap_1.2-7_arm-ds111.xsh
Install packages:
ipkg install perl-compress-zlib ipkg install perl-archive-zip ipkg install optware-devel
CPAN modules
cpan install File::Listing CGI::Fast
Add backuppc
user and backuppc
group using the webinterface.
Find backuppc user and adjust the path according -d param in command above. Make sure you set this to the NAS disk not the rootfs
vi /etc/passwd
$Conf{PingCmd} = 'sudo $pingPath -c 1 -w 3 $host';
After root ALL … add the following in /opt/etc/sudoers:
admin ALL = NOPASSWD: /bin/ping backuppc ALL = NOPASSWD: /bin/ping
Client - the machine where data is pulled from
watch "lsof -n | grep rsync | egrep ' (REG|DIR) ' | egrep -v '( (mem|txt|cwd|rtd) |/LOG)' | awk '{print $9}'"
Server - your backuppc instance
watch "lsof -n | grep rsync | egrep ' (REG|DIR) ' | egrep -v '( (mem|txt|cwd|rtd) |/LOG)' | awk '{print $9}'"
Works :