One of the most useful computer applications that I've come across so far is Dropbox. There are already countless articles about this automatic folder backup and synchronization tool here in MakeUseOf, including many usage spin-offs like: synchronizing research data and triggering automatic downloads.

But if you are an avid Dropbox user, there might be times when you wish you could run multiple Dropbox accounts simultaneously.

Maybe because you need to seperate personal account and work account, or maybe you just want to get some extra storage - for free. Whatever the reason is, there are ways to run multiple Dropbox accounts at once. Here are the steps to do it on a Mac.

Before you start, you need to create an additional account with Dropbox.

Command Line Galore

Tweaking Dropbox to enable multiple instances requires meddling with Terminal and a whole bunch of command lines. I'm not a fan of command line myself, but I can tell you that the following process is not as "scary" as it sounds.

There are two steps that need to be taken. The first step is setting up the account.

  1. Open Terminal
  2. Type (or just copy and paste) this command:

    bash

    Hit enter and insert the next command line:

    HOME=$HOME/.dropbox-alt /Applications/Dropbox.app/Contents/MacOS/Dropbox &

    Here's how it looks like.
    Multiple Dropbox Accounts
  3. A new Dropbox icon will appear in the menubar.
    run Multiple Dropbox Accounts
  4. A Dropbox account setup window will also pop up. Follow the setup steps.
    03b Dropbox Setup.jpg
  5. At the last setup step, tick the option to choose your own location of Dropbox folder. Hit the "Change" button to determine the location.
    04 Dropbox Setup - Choose Location-1.jpg
  6. After the setup process complete, you can close the terminal. Theoretically, the extra Dropbox instances will also be closed, but in my experiment it remained in the menubar.

That's the end of step 1. We'll go to the second step: creating the startup item for the extra Dropbox instance.

  1. Open the Terminal (again)
  2. Paste in this command line:

    mkdir -p ~/wherever you like/DropboxAltStarter.app/Contents/MacOS/

    In place of "wherever you like" really does mean anywhere on your hard drive that you like, such as ~/Documents/.
    Multiple Dropbox Accounts
    In this step, you are creating an application called "DropboxAltStarter". But it's not completed yet.
    05b Created Application-1.jpg
  3. Then open TextEdit and paste:

    <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0"><dict> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleExecutable</key> <string>DropboxAltStarter</string> <key>LSUIElement</key> <string>1</string></dict></plist>

    Save the file as: "Info.plist" anywhere.(Please note that the <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" and "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> above should be written within one line of code - separated by a space, but we need to break it down into two because it couldn't fit into the WP theme. So don't forget to enter it in one line).
    06 TextEdit - Save plist.jpg
  4. Right click on the "DropboxAltStarter" that you've created before and choose "Show Package Contents"
    07 Show Package Contents.jpg
  5. Drag and drop the "Info.plist" file into the folder "Contents" (the same level as "MacOS" folder).
    08 Inside Contents.jpg
    08b Inside Contents.jpg
  6. Create a new text file and paste:

    #!/bin/bashHOME=/Users/$USER/.dropbox-alt /Applications/Dropbox.app/Contents/MacOS/Dropbox

    (Again, the HOME=/Users/$USER/.dropbox-alt and /Applications/Dropbox.app/Contents/MacOS/Dropbox should be written in one line of code separated by a space. You know what to do.)Then save the file as "DropboxAltStarter" (sans quote). Don't forget to uncheck the "If no extension is provided, use ".txt"" box to prevent TextEdit from saving the file as text file.
    09 DropboxAltStarter.jpg
  7. Repeat steps 4 and 5 above to put the "DropboxAltStarter" file into the "MacOS" folder.
    09b DropboxAltStarter.jpg
  8. Open Terminal and type this command:

    chmod 755

    Before you hit enter, drag and drop the "DropboxAltStarter" file to the Terminal to finish the command.
    10 Making it executable.jpg
    Then hit enter.
    10b Terminal
  9. Now you have a working app. You can move it to the "Applications" folder if you like, double click it to open the second dropbox account.
    11 New Dropbox account-1.jpg
  10. You can also add the newly created app to your start up list by going to "System Preferences > Accounts > Login Items" menu.
    11 Add login items.jpg

After the long journey

Whew! That was quite a long ride, wasn't it?

The work is done, but there's still one thing to add: To know which Dropbox account is which, you can assign different logo to one of them. Go to Dropbox' "Preferences > General" and choose the B&W logo for one of the accounts.

12 Dropbox Preferences.jpg

If you are a Windows user, you can use Dropbox addon called Dropboxen to achieve the same result.

So, what would you do with two Dropbox instances? Do you know the way to run multiple Dropbox accounts? Share your thoughts and opinion using the comment below.