> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/increase-limit-of-inotify-watchers.md).

# Increase Limit of Inotify Watchers

To check current limit of inotify watchs:

```bash
cat /proc/sys/fs/inotify/max_user_watches
```

To change Inotify watch limit:

```bash
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf
sudo sysctl -p
```

***Source:*** [***GitHub***](https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers#the-technical-details)
