Results 1 to 3 of 3

Thread: Linking Documents folder to Dropbox

  1. #1
    Join Date
    Oct 2013
    Beans
    10

    Linking Documents folder to Dropbox

    I managed to link the Document folder to Dropbox via this method:

    1. Create "Make Link" of Document Folder (Creates "Link to Documents" Folder)
    2. Insert "Link to Document Folder" into Dropbox Folder

    It works and seems so simple and logical But I was curious are there any more logical methods to do this? Perhaps without using "Make Link" and maybe using the Terminal? I'm new to Linux/Ubuntu but I'm highly intrigued to learn more about using it

  2. #2
    Join Date
    May 2009
    Location
    Indiana
    Beans
    1,971
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Linking Documents folder to Dropbox

    If you use Ubuntu One instead of dropbox (same concept, different company) you can right-click any folder, click Ubuntu One, then click Synchronize this Folder.

    Even simpler...
    Jane, stop this crazy thing!

  3. #3
    Join Date
    Apr 2011
    Location
    Maryland
    Beans
    1,461
    Distro
    Kubuntu 12.04 Precise Pangolin

    Re: Linking Documents folder to Dropbox

    You might be better off moving your Documents folder to Dropbox and then putting the link on your local computer(s). That way you'll be able to access your Documents folder from anywhere you have access to Dropbox, and it'll sort of act as a way to keep the folder backed up in case of disaster.

    If you want to do it from a terminal window, then you can use the ln command to create a softlink to the folder. So, assuming the folder is in Dropbox and you want to put a link to it in your Home directory:

    Code:
    ln -s $HOME/Dropbox/Documents $HOME/Documents
    The variable $HOME here refers to your home directory (/home/mithen2/ for example).

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •