Created
July 31, 2017 10:10
-
-
Save falendary/487de19c239511eaa409beeeaf9e9f3d to your computer and use it in GitHub Desktop.
Increase watchers in linux (webpack)
This file contains hidden or 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
cat /proc/sys/fs/inotify/max_user_watches // show watchers | |
// One time procecure | |
sudo sysctl fs.inotify.max_user_watches=524288 | |
sudo sysctl -p | |
// In config procedure | |
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf | |
sudo sysctl -p |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment