Golden Codes - armanexplorer planet

Practical code snippets for Django, Python, Bash, Git and All!

View on GitHub

Increase watchers

# see current limit
cat /proc/sys/fs/inotify/max_user_watches

# add custom settings
sudo echo "fs.inotify.max_user_watches=524288" >> /etc/sysctl.conf

# load value
sudo sysctl -p

# see the new limit
cat /proc/sys/fs/inotify/max_user_watches

VS Code Docs