I have two Dropbox accounts. Is it possible to link and use both of the accounts simultaneously without logging in as the different user?
Do not confuse with similar looking post
Multiple Dropbox accounts on the same computer for different users.
I have two Dropbox accounts. Is it possible to link and use both of the accounts simultaneously without logging in as the different user?
Do not confuse with similar looking post
Multiple Dropbox accounts on the same computer for different users.
General idea [source]
The basic idea is to just start Dropbox from the command-line using an alternate home directory. This will create another Dropbox icon, and another Dropbox folder, which has to be in some other place from the original one.
The two Dropbox folders will both be called Dropbox (this cannot be changed), but you can distinguish them by their location.
nautilus-dropbox
from the repositoryOpen a terminal and paste the following commands:
$ mkdir "$HOME"/.dropbox-alt
$ HOME="$HOME/.dropbox-alt"
$ /usr/bin/dropbox start -i
A new Dropbox setup wizard window will open and second Dropbox icon should appear on the status bar.
Now your alternate dropbox is set.
start Dropbox from terminal
$ /usr/bin/dropbox start -i
start Alternate-Dropbox from terminal
$ HOME="$HOME/.dropbox-alt" && /usr/bin/dropbox start -i
dropbox
in your home from tar.gz
fileOpen a terminal and paste the following commands:
$ mkdir "$HOME"/.dropbox-alt
$ ln -s "$HOME/.Xauthority" "$HOME/.dropbox-alt/"
$ HOME="$HOME/.dropbox-alt"
$ /home/$USER/.dropbox-dist/dropboxd
Dropbox setup wizard window will appear. Finish the setup similarly as described in Method -1
start Dropbox from terminal
$ /home/$USER/.dropbox-dist/dropboxd
start Alternate-Dropbox from terminal
$ HOME="$HOME/.dropbox-alt" && /home/$USER/.dropbox-dist/dropboxd
chmod +x /path/to/script
The multiple fake home directories method works until Dropbox updates itself; if you find that you have this working and then it stops working, see https://realflash.wordpress.com/2016/02/11/multiple-dropboxes-stops-working-only-one-at-a-time/
Advanced Settings
which appears on the screen after you choose your selective sync options. – Garrett Feb 28 '15 at 21:28nautilus
? – phil294 Jun 29 '17 at 23:39.deb
provided for Ubuntu. – FooBar Sep 28 '20 at 10:26