debian/ubuntu 服务器安装Dropbox
Debian
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
Ubuntu如果出错
- cd ~ && wget -O - "http://www.dropbox.com/download?plat=lnx.x86" | tar xzf -
- --2012-05-14 08:53:48-- http://www.dropbox.com/download?plat=lnx.x86
- Resolving www.dropbox.com... 199.47.217.171, 199.47.216.170, 199.47.216.171, ...
- Connecting to www.dropbox.com|199.47.217.171|:80... connected.
- HTTP request sent, awaiting response... 302 FOUND
- Location: https://www.dropbox.com/download?plat=lnx.x86 [following]
- --2012-05-14 08:53:48-- https://www.dropbox.com/download?plat=lnx.x86
- Connecting to www.dropbox.com|199.47.217.171|:443... connected.
- ERROR: cannot verify www.dropbox.com's certificate, issued by `/C=US/O=Thawte, Inc./CN=Thawte SSL CA':
- Unable to locally verify the issuer's authority.
- To connect to www.dropbox.com insecurely, use `--no-check-certificate'.
- gzip: stdin: unexpected end of file
- tar: Child returned status 1
- tar: Error is not recoverable: exiting now
使用以下指令安装
32-bit:
cd ~ && wget -O - http://www.dropbox.com/download/?plat=lnx.x86 --no-check-certificate | tar xzf -
64-bit:
cd ~ && wget -O - https://www.dropbox.com/download?plat=lnx.x86_64 --no-check-certificate | tar xzf -
fan