Sync my files with my computers (Windows, Linux, ...)
From Memotoo Wiki
To have your files synchronized between your computers and Memotoo, you can use the FTP Server:
Contents |
With Windows
- Download SyncBack Freeware utility:
http://download.cnet.com/SyncBack-Freeware/3000-2242_4-10413802.html
- Add a new profile: "Synchronisation: for keeping the contents of thwo directories identical"
- Set the Memotoo FTP Server as destination folder
- Run the synchronisation
With Linux
Synchronize files from computer to Memotoo
Nothing to install, just create this script:
#!/bin/bash # Replace "login", "password" and "LCD" with your settings HOST="ftp.memotoo.com" USER="login" PASS="password" # Local directory LCD="/home/memotoo-files/" # Remote directory RCD="/" lftp -c "set ftp:list-options -a; open ftp://$USER:$PASS@$HOST; lcd $LCD; cd $RCD; mirror --reverse \ --delete \ --verbose"
Synchronize files from Memotoo to computer
Nothing to install, just create this script:
#!/bin/bash # Replace "login", "password" and "LCD" with your settings HOST="ftp.memotoo.com" USER="login" PASS="password" # Local directory LCD="/home/memotoo-files/" # Remote directory RCD="/" lftp -c "set ftp:list-options -a; open ftp://$USER:$PASS@$HOST; lcd $LCD; cd $RCD; mirror --delete \ --verbose"
or use this command:
wget --mirror ftp://login:password@ftp.memotoo.com/ -P /home/memotoo-files/

