Daily Archives: March 26, 2017


Syncing images from android smartphone to raspberry pi

I was looking for a solution to backup the photos taken with my smartphone to our raspberry pi. Android side I searched for synchronization apps and ended up using rsync as backup tool. Therefore I installed the app ‘Rsync Wrapper‘ on my smartphone and configured it with the following parameters: Source: /storage/9C33-6BBD/DCIM/Camera/ Destination: martin@192.168.2.106:~/photos/handy-samsung-s7/ Option: -r –ignore-existing –progress -e “ssh -l martin -i /data/user/0/net.letscorp.rsyncwrapper/files/06a73f67-6234-40e7-81de-7add8fa4c783.key -y” I removed the –verbose parameter and added the –ignore-existing parameter. The –ignore-existing parameter was added by me because the synchronization took up to twenty minutes where the most of the time was used to check which files are […]