Dropbox
Setup box
Shared FileSystem
Dropbox
cd ~ && \ curl -Lo dropbox-linux-x86_64.tar.gz https://www.dropbox.com/download?plat=lnx.x86_64 && \ sudo mkdir -p /opt/dropbox && \ sudo tar xzfv dropbox-linux-x86_64.tar.gz --strip 1 -C /opt/dropbox && \ /opt/dropbox/dropboxd
This client is not linked to any account... Please visit https://www.dropbox.com/cli_link?host_id=xxx to link this machine.This computer is now linked to Dropbox. Welcome xxxmkdir -p ~/bin && \ wget -O ~/bin/dropbox.py "http://www.dropbox.com/download?dl=packages/dropbox.py" && \ chmod 755 ~/bin/dropbox.py && \ ~/bin/dropbox.py helpcd ~/Dropbox/ && ~/bin/dropbox.py exclude add *cd ~ && \ sudo curl -o /etc/init.d/dropbox https://gist.githubusercontent.com/thisismitch/d0133d91452585ae2adc/raw/699e7909bdae922201b8069fde3011bbf2062048/dropbox && \ sudo chmod +x /etc/init.d/dropbox && \ echo DROPBOX_USERS="root" >> /etc/default/dropbox && \ sudo update-rc.d dropbox defaults && \ sudo service dropbox start# added on jul 18 2017 by pulkit alias dropbox='~/bin/dropbox.py'Unable to monitor entire Dropbox folder hierarchy. Please run "echo fs.inotify.max_user_watches=100000 | sudo tee -a /etc/sysctl.conf; sudo sysctl -p" and restart Dropbox to fix the problem. Unable to monitor entire Dropbox folder hierarchy. Please run "echo fs.inotify.max_user_watches=100000 | sudo tee -a /etc/sysctl.conf; sudo sysctl -p" and restart Dropbox to fix the problem.# how many watchers have been made available? $ cat /proc/sys/fs/inotify/max_user_watches 8192 # how many watchers have been made available? $ sysctl fs.inotify.max_user_watches fs.inotify.max_user_watches = 8192# 1. increase the number of watchers $ echo fs.inotify.max_user_watches=100000 | sudo tee -a /etc/sysctl.conf; sudo sysctl -p # 2. stop dropbox daemon if its running $ ~/bin/dropbox.py stop # 3. start the daemon again $ /opt/dropbox/dropboxd & # 4. check the status, it should start humming along again, soon: $ dropbox status Syncing (22,758 files remaining) Indexing 21,025 files... Uploading 1,729 files... $ dropbox status Syncing (21,995 files remaining) Indexing 19,825 files... Uploading 2,166 files...
Other References
Last updated