如何在无头 Dropbox 安装中获取同步状态

如何在无头 Dropbox 安装中获取同步状态

我在 Debian 服务器上运行 Dropbox。我希望能够查看同步状态 - 就像在 Windows 中右键单击 Dropbox 图标时看到的那样,例如“正在下载 123 个文件”或“全部最新”。

我确信有办法,但在这一点上谷歌显然不是我的朋友。

请注意,我说的是 dropbox 的无头服务器安装,而不是用于典型的 linux 桌面的更常见的 dropbox + dropbox-nautilus 设置。

答案1

看起来你需要下载Dropbox 脚本用于管理守护进程。dropbox 网站

wget -O ~/dropbox.py https://www.dropbox.com/download?dl=packages/dropbox.py
chmod a+x ~/dropbox.py
~/dropbox.py status

您还可以创建指向 Dropbox 脚本的符号链接,这样您就不必~/dropbox.py每次都键入来运行它。

sudo ln -s ~/dropbox.py /usr/local/bin/dropbox
dropbox status

答案2

安装帮助脚本(.deb 包的一部分)

$ dropbox help
Dropbox command-line interface

commands:

Note: use dropbox help <command> to view usage for a specific command.

 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


$ dropbox status

相关内容