我按照 Dropbox 网站上此链接中的步骤进行操作:https://www.dropbox.com/install?os=lnx
但是当我运行时~/.dropbox-dist/dropboxd
什么也没有发生...我没有看到消息...我也遵循了这个教程(http://www.dropboxwiki.com/tips-and-tricks/install-dropbox-in-an-entirely-text-based-linux-environment) 和类似内容,但我在输出中没有看到任何消息。我还能做什么?
程序正在执行...它只是卡在终端上而没有任何消息...它创建目录~/.dropbox-master
,~/.dropbox
但没有其他事情发生......
答案1
可能已经晚了 6 个月,但我也遇到过类似的问题,在 14.04 服务器(无 GUI)上运行 dropboxd 似乎挂起了(未提供链接)。不能保证修复方法相同,但以下方法对我有用:
我最终通过返回 Dropbox 中的某个版本解决了这个问题。我替换了他们网站上列出的 dropbox wget 命令https://www.dropbox.com/install?os=lnx):
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -
与之前的版本(上述声明指向 3.0.3)
cd ~ && wget -O - "https://dl.dropboxusercontent.com/u/17/dropbox-lnx.x86_64-2.10.51.tar.gz" | tar xzf -
跑步时
~/.dropbox-dist/dropboxd
我收到错误信息:
Couldn't start Dropbox.
This is usually because of a permissions error. Storing your home folder on a network share can also cause an error.
Get more help at [cannot post links yet]
Please contact Dropbox support with the following info for help:
/tmp/dropbox_errorOqCF3h.txt
在 tmp 文件的末尾,我发现
ImportError: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory
这是用
sudo apt-get install libgtk2.0-0
再次运行dropboxd
,我同样发现我遗漏了libSM.so.6
,这是用
sudo apt-get install libsm6
Dropbox 第三次报告
wx error: Unable to access the X Display, is $DISPLAY set properly?
Unable to access the X Display, is $DISPLAY set properly?
谷歌了一下后我发现
env - LANG="$LANG" ~/.dropbox-dist/dropboxd &
让我开始吧。之后,Dropbox 很高兴地给了我一个链接,让我通过网络浏览器连接电脑
有点乏味,但我似乎已经开始行动了。
答案2
尝试清除 DISPLAY 环境变量。bash$ export DISPLAY= 然后重试。
这就是我刚刚在 Ubuntu Server 15.04 上所做的工作,因为我登录的主机上正在运行 X。