Open my Memotoo account

Sync my files with my computers (Windows, Linux, ...)

To have your files synchronized between your computers and Memotoo, you can use the FTP Server:

Contents

With Windows

You can use the Funambol plugin to sync Files / Photos and Videos with your Windows

https://www.memotoo.com/how-to-sync-microsoft-outlook.php


  • 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"

SyncBack1.png

  • Set the Memotoo FTP Server as destination folder

SyncBack2.png

  • 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/


Links

How to sync files on Android and Memotoo

How to sync files on iPad and Memotoo

How to sync files on iPhone and Memotoo

How to sync files on BlackBerry and Memotoo

How to sync files on Windows and Memotoo (with Funambol plugin for Outlook)

Access to your files with a WebFolder / WebDAV