我回答这个问题是因为我花了一段时间才找到正确的解决方案,所以我希望它能帮助到一些人(我对Linux非常陌生,所以我试图使用“安全”的方法来实现它):
解决方案:只需使用命令行(终端)
sudo apt-get install nautilus-dropbox
我在这里找到了命令:安装Ubuntu14.04之后要做的事情-- FOSS
我在这个问题的答案上找到了关于这个问题的详细解释(如果你不知道有问题的更新,很难找到):Dropbox升级
发布于 2015-10-02 05:35:14
2.打开终端并运行以下命令:
32位:
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86" | tar xzf -
64位:
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -
那就跑,
~/.dropbox-dist/dropboxd
或
开放航站楼并运行:
sudo apt-get install nautilus-dropbox
然后它将请求重新启动所有正在运行的Nautilus实例,然后运行nautilus --quit
。
dropbox终端命令:
dropbox
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
https://askubuntu.com/questions/680776
复制