Installation (Dropbox)

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen

How to install and remove Dropbox on Linux Mint:

Installation

sudo apt install dropbox

Subsequently, a piece of proprietary software is downloaded and installed.

Headless installation

You can also download this proprietary portion mentioned above yourself - headless installation. In Sep. 2022, this turned out to be quite handy: The internet connection in Ossolin was otherwise too limited.

[1]:

Dropbox Headless Install via command line
The Dropbox daemon works fine on all 32-bit and 64-bit Linux servers. To install,
run the following command in your Linux terminal.

32-bit:

cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86" | tar xzf -
64-bit:

cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -
Next, run the Dropbox daemon from the newly created .dropbox-dist folder.

~/.dropbox-dist/dropboxd
If you’re running Dropbox on your server for the first time, you’ll be asked to
copy and paste a link in a working browser to create a new account or add your
server to an existing account. Once you do, your Dropbox folder will be created
in your home directory. Download this Python script to control Dropbox from the
command line. For easy access, put a symlink to the script anywhere in your PATH.

Removal

Remove Dropbox with

sudo apt remove dropbox

or

sudo apt remove --purge dropbox

However, in neither case does it remove personal settings, nor the existing Dropbox folder. This folder might contain some hidden stuff, even if synchronization never actually happened.

See also

Sources