Dropbox - echo 100000 | sudo tee /proc/sys/fs/inotify/max_user_watches
Dropbox comes up with the error message:echo 100000 | sudo tee /proc/sys/fs/inotify/max_user_watches
Unfortunately anything put in /proc/sys is not permanent and your back at square one on next boot. There are a couple of fixes it for the issue though.
1) Edit
# Fix for Dropbox fs.inotify.max_user_watches=100000
2) Edit
echo 100000 | tee /proc/sys/fs/inotify/max_user_watches
This is a brief explanation of the issue that I found at http://forums.dropbox.com/topic.php?id=29130
This is from the "advanced" section of https://www.dropbox.com/help/145:
"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: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."sudo sysctl fs.inotify.max_user_watches=100000
No comments:
Post a Comment