Last active
July 26, 2021 17:25
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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