Dropbox

如何在無頭保管箱安裝中獲取同步狀態

  • May 11, 2015

我在 Debian 伺服器上執行 Dropbox。我希望能夠找出同步狀態——就像你在 Windows 中右鍵點擊下拉框圖示時得到的那樣,例如“正在下載 123 個文件”或“所有最新”。

我確信有辦法,但Google顯然不是我在這方面的朋友。

請。請注意,我說的是 dropbox 的無頭伺服器安裝,而不是用於典型 linux 桌面的更常見的 dropbox + dropbox-nautilus 設置。

看起來您需要下載用於管理守護程序的保管箱腳本。保管箱網站上的說明

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

安裝了幫助腳本(.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

引用自:https://serverfault.com/questions/410610