Estou trabalhando com o meteoro js, ao executar o comando meteor
(que constrói o aplicativo da web), obtive esta saída para o terminal:
=> It looks like a simple tweak to your system's configuration will make
many tools (including this Meteor command) more efficient. To learn more,
see https://github.com/meteor/meteor/wiki/File-Change-Watcher-Efficiency
Há que é dito que o problema é com inotify
:
This message means that meteor tried to use the Linux inotify API to watch for file changes, but you've already reached the system-wide limit for the number of files that you can watch (probably in a different program entirely!).
Fortunately, this is easy to fix. Just run this command at your shell, entering your password when prompted:
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
Embora seja dada uma solução alternativa, ainda estou curioso para saber quais arquivos o Ubuntu (ou inotify
) está assistindo por padrão e onde posso ver isso?
Estou usando o Ubuntu 16.04.