如何在 Ubuntu 14.04 上安装 Dropbox(2015 年 10 月)

qoe*_*let 10 software-center command-line dropbox 14.04

回答这个问题是因为我花了一段时间才找到正确的解决方案,所以我希望它对某人有所帮助(我对 Linux 还是个新手,所以我试图使用“安全”的方式来做到这一点):

  • Dropbox 与 ubuntu(或其他方式)存在某种更新/兼容性问题。我在几个月和几年前在论坛上看到的解决方案在几个月后(阅读评论后)不起作用。这在 2015 年 10 月的 Ubuntu 14.04 上对我有用
  • 从 ubuntu 软件中心安装的 Dropbox 将无法工作/启动
  • 从 dropbox 网站下载的 .deb 文件需要安装守护程序。安装后,dropbox 仍然无法工作并给出很多错误信息(关于守护进程)

解决方案:只需使用命令行(终端)

sudo apt-get install nautilus-dropbox
Run Code Online (Sandbox Code Playgroud)

我在这里找到了命令:安装 Ubuntu 14.04 后要做的事情 - 这是 FOSS

我在这个问题的答案中找到了关于这个问题的详细解释(如果你不知道有问题的更新,很难找到):Dropbox Upgrade

Rav*_*van 13

1.从官方网站下载安装程序,(64位32位

2.打开终端并运行以下命令:

对于 32 位:

 cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86" | tar xzf -
Run Code Online (Sandbox Code Playgroud)

对于 64 位:

 cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -
Run Code Online (Sandbox Code Playgroud)

然后运行,

~/.dropbox-dist/dropboxd
Run Code Online (Sandbox Code Playgroud)
  • 您也可以从软件中心安装

或者

打开终端并运行:

sudo apt-get install nautilus-dropbox
Run Code Online (Sandbox Code Playgroud)

然后它会要求重新启动 Nautilus 的所有正在运行的实例,然后运行 nautilus --quit

伊格

伊格

dropbox 的终端命令:

dropbox 
Run Code Online (Sandbox Code Playgroud)
status       get current status of the dropboxd
help         provide help
puburl       get public url of a file in your dropbox
stop         stop dropboxd
running      return whether dropbox is running
update       download latest version of dropbox
start        start dropboxd
filestatus   get current sync status of one or more files
ls           list directory contents with current sync status
autostart    automatically start dropbox at login
exclude      ignores/excludes a directory from syncing
lansync      enables or disables LAN sync
Run Code Online (Sandbox Code Playgroud)