Skip to content

Instantly share code, notes, and snippets.

@craigvantonder
Last active July 26, 2021 17:25
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save craigvantonder/a54702cd9bd5c2dd6e8b33c3fce8bc5b to your computer and use it in GitHub Desktop.
Save craigvantonder/a54702cd9bd5c2dd6e8b33c3fce8bc5b to your computer and use it in GitHub Desktop.
Sublime Text 3 / Network Folder - inotify_add_watch failed: No space left on device
Takes a long time to load project folders running in a VM and the sublime console shows:
inotify_add_watch failed: No space left on device (path: /some/project/location/...)
https://github.com/google/cadvisor/issues/1581#issuecomment-367616070
sudo cat /proc/sys/fs/inotify/max_user_watches # default is 8192
sudo sysctl fs.inotify.max_user_watches=1048576 # increase to 1048576
https://github.com/google/cadvisor/issues/1581#issuecomment-436405681
increase the inotify limit in the HOST SYSTEM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment