Can I run multiple instances of Dropbox at once?

Naftuli Kay

I have a Dropbox account for work and one for personal. Is it possible to run both at the same time, storing Dropbox contents in different folders? (i.e. Dropbox/Work and Dropbox/Personal, respectively)

I'm running Ubuntu 12.04. I know that it's possible to run Dropbox from the command-line, but can multiple agents be run at once?

darookee

Yes, this should be possible. Here is a snippet from the gentoo dropbox init script:

 start() {
     ebegin "Starting dropbox..."
     for dbuser in ${DROPBOX_USERS}; do
         start-stop-daemon -b -o -N ${NICENESS} -c $dbuser -S -v -e HOME="/home/$dbuser" -x /home/$dbuser/.dropbox-dist/dropboxd
     done
     eend $?
 }

In your case the commands you need to run would be

HOME="/home/user/.dropbox/work" /home/user/.dropbox-dist/dropboxd
HOME="/home/user/.dropbox/personal" /home/user/.dropbox-dist/dropboxd

be sure to link the ~/.dropbox/work/Dropbox folder created on the first run of each process to ~/Dropbox/Work or ~/Dropbox/Personal or change it using the script described in the dropboxwiki.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

How to - multiple dropbox instances in Linux?

Can I run multiple instances at once(simultaneously) with selenium-webdriver?

Resetting FileInputStream in Java so I can run multiple instances of another program in a test program

Can I run my Expo app on multiple iOS Simulators at once?

Can osgi run multiple instances of the same bundle

How can I mock multiple instances of a struct?

Is there a way I can run multiple two and from data points at once in R using ggmap mapdist?

Can I run multiple instances of the same stored procedure that includes temp tables in SQL Server

How can I run multiple commands at once from windows command line using c++ / c?

Can I run multiple virtual machines at once?

can I install multiple ubuntu distros at once?

executing method once if there is multiple instances

Do I need multiple instances of the Dropbox shell extension?

Can you run multiple instances of webpack at once?

How can I run multiple instances of Telegram?

How to run multiple instances of Spark 2.0 at once (in multiple Jupyter Notebooks)?

python multithreading, how can i run multiple operations at once

Broadcast message in microservices and run it once in multiple instances

How can I run multiple instances of a SOAP web service in SOA enterprise manager?

Can i run multiple instances of my background worker?

Can I run a scheduled task once?

How can I run multiple instances of Tornado's IOLoop?

How do I ensure crontab commands run once on AWS when there may be multiple instances?

Can I bind multiple variables at once?

Can I use await on multiple functions at once?

How can I add dates to dataframe which only displays once for multiple instances?

How can I scan multiple photos at once

How can I refer to multiple turtles at once?

How can I run multiple instances of a service concurrently in C#?