Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

Dropbox gives me an error that mentions echo tee 100000 but then it disappears. How to fix or remove msg?

share|improve this question
You do have a lot of folders in your Dropbox, don't you? – lgarzo Jun 8 '12 at 14:20
2  
I suggest UBUNTU ONE. More Space and more Ubuntish. – Luis Alvarado Jun 8 '12 at 14:23
Yes I actually use both. I use Ubuntu for video's and the like and Dropbox for non-video files. – Michael Durrant Jun 8 '12 at 14:38

1 Answer

up vote 31 down vote accepted

Edit your /etc/sysctl.conf file with your favorite text editor, ie nano:

sudo nano /etc/sysctl.conf

and append fs.inotify.max_user_watches=100000 in the end of the file as a new line.


From the advanced help guide from Dropbox

Monitoring more than 10000 folders

The Linux version of the Dropbox desktop application is limited from monitoring more than 10000 folders by default. Anything over that is not watched and, therefore, ignored when syncing. There's an easy fix for this. Open a terminal and enter the following:

echo fs.inotify.max_user_watches=100000 | sudo tee -a /etc/sysctl.conf; sudo sysctl -p

This command will tell your system to watch up to 100000 folders. Once the command is entered and you enter your password, Dropbox will immediately resume syncing.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.