Skip to content

Instantly share code, notes, and snippets.

@lauborges
Created October 28, 2021 15:08
Show Gist options
  • Save lauborges/1a1576b9930ed48ff71fd8475ca9e1fe to your computer and use it in GitHub Desktop.
Save lauborges/1a1576b9930ed48ff71fd8475ca9e1fe to your computer and use it in GitHub Desktop.
# dotnet core Error on linux
The configured user limit (128) on the number of inotify instances has been reached
# Fix
echo fs.inotify.max_user_instances=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