Ubuntu – How to sync folders on different partitions (symlink?)

fat32symbolic-linksyncubuntu-one

I use Ubuntu One to synch my home/Documents folder among more computers. On a portable tablet I have set the Documents folder in a separate Fat32 partition named sda6, and I made it default documents folder with Ubuntu Tweaks.

How do I synchronize it with my /Documents cloud ? I tried to link /sda/Documents in my home folder but it didn't succeed: UbuntuOne still tries to set an own Documents folder and doesn't let me sync the linked folder with the cloud. What can I do, would please anyone help me ?

Best Answer

Found this in the Ubuntu Community Documentation for the mount command here

An interesting ability of mount is it's ability to move specific parts of a filesystem around. For example:

sudo mount --bind /mnt/Files/Music /home/user/Music

Will let the folder "/mnt/Files/Music" also be accessible in /home/user/Music

This has allowed me to be able to sync my AddOns folder for World of Warcraft between several computers, even though the actually folder is kept on a different hard drive in a ntfs partition. Ubuntu One doesn't support symlinks.

Related Question