Can I symlink a Dropbox folder?

5,875

Solution 1

Dropbox should not have any problems using a symlinked "Dropbox folder".

Make sure the dropbox folder on your win partition is synced and uptodate.

dropbox stop
cd /home/$user/Dropbox
tar cvfz /home/$user/backup.tar.gz *
rm -R /home/$user/Dropbox
ln -s /pathtowindowspartition/User/Dropbox /home/$user/Dropbox 
cd /home/$user/Dropbox
dropbox start

Solution 2

AFAIK, yes. This is sort of an "advantage" to Dropbox for Linux. Windows' "links" are actually .lnk files, which are windows-only. (I'm currently wondering how Windows handes Linux's symbolic links, but that's another story...)

It allows you to easily back up things to your Dropbox folder that would not normally be able to be backed up, such as ~/.minecraft. You can simply make the link to a game's config folder, or anything else, and it will work.

As for it pointing to a preexisting folder, you get to choose your Dropbox folder location during the setup. If that's not going to work (e.g., you don't want to reinstall it,) a symlink always works.

Share:
5,875

Related videos on Youtube

Neil
Author by

Neil

Updated on September 18, 2022

Comments

  • Neil
    Neil over 1 year

    I've just installed Ubuntu 12.10 as a dual boot with Windows 8. I'd already had windows up and running for a few months before installing Ubuntu, so in order to have my files accessible from both OS's, I have the windows partition automatically mounted, and the folders in /home symlinked to their windows counterparts.

    This is working really well except for my Dropbox folder. The dropbox folder created by the windows side is accessible by the linux side, but obviously it doesn't sync any more. The same problem arises the other way round.

    Can anyone think of a way around this, to get both sides syncing the same data? Is it possible to point dropbox to a pre-existing folder instead of having it create a new folder?

    Thanks

  • Neil
    Neil over 11 years
    Thanks, I'll try that tonight. Just checking I'm following it correctly though. If I backup the contents of the windows folder, delete it, install Dropbox on Linux with its folder in the same location, then copy the original contents back in, both sides should be happy?
  • Bob
    Bob about 11 years
    Just a quick note that the .lnk files you mention on Windows are actually shortcuts handled by the shell. The NTFS file system (and Windows) do support 'proper' symbolic and hard links, along with NTFS junctions. AFAIK they work more or less the same way the *nix ones work.