Dropbox GUI를 사용하여 동기화 할 폴더를 구체적으로 제어 할 수 있습니다. 어떻게 든 명령 줄 에서도이 작업을 수행 할 수 있습니까?
배경 : 여기에 제공된 Linux 서버에 Dropbox를 설치하기위한 솔루션을 시험 중이며 정상적으로 작동하는 것 같습니다 : http://ubuntuservergui.com/ubuntu-server-guide/install-dropbox-ubuntu-server
Dropbox GUI를 사용하여 동기화 할 폴더를 구체적으로 제어 할 수 있습니다. 어떻게 든 명령 줄 에서도이 작업을 수행 할 수 있습니까?
배경 : 여기에 제공된 Linux 서버에 Dropbox를 설치하기위한 솔루션을 시험 중이며 정상적으로 작동하는 것 같습니다 : http://ubuntuservergui.com/ubuntu-server-guide/install-dropbox-ubuntu-server
답변:
공식 Dropbox CLI에는 제외 옵션이 있습니다.
Linux에서 Dropbox에는 클라이언트 ( dropbox
)와 데몬 ( dropboxd
)이 있습니다.
클라이언트에는 exclude
디렉토리를 제외시키는 데 사용할 수 있는 명령이 있습니다. 예를 들어 Dropbox에서 node_modules를 제외하려면 입력 할 수 있습니다dropbox exclude add ./node_modules
dropbox help exclude
도움말 정보를 인쇄합니다 :
dropbox exclude [list]
dropbox exclude add [DIRECTORY] [DIRECTORY] ...
dropbox exclude remove [DIRECTORY] [DIRECTORY] ...
"list" prints a list of directories currently excluded from syncing.
"add" adds one or more directories to the exclusion list, then resynchronizes Dropbox.
"remove" removes one or more directories from the exclusion list, then resynchronizes Dropbox.
With no arguments, executes "list".
Any specified path must be within Dropbox.
대부분의 경우 Dropbox CLI가 잘 작동합니다. Ubuntu Server (14.04)에서 찾은 몇 가지 문제가 있습니다.
cd ~/Dropbox\ \(blah\)/
에있는 다음 디렉토리를 제외하는 것이 ~/Dropbox (blah)$ ~/bin/dropbox.py exclude add /home/<USERNAME>/Dropbox\ \(blah\)/somefolder
좋습니다.2016 년 사진 갤러리에서 ".llgal"폴더를 찾아서 제외합니다.
dropbox exclude add $(find /home/dcp/Dropbox/Galeria_Fotos/2016/ -iname \.llgal | tr '\n' ' ')
나는 그것이 당신이 요청한 것이 아니라 다른 사람들을 도울 수 있다는 것을 알고 있습니다.
dropbox 사용에 문제가 있기 때문에 dropbox의 데이터베이스 수정과 같은 솔루션을 찾고 있습니다.
문안 인사
tr '\n' ' '
이 경우 의 목적은 무엇입니까 ?