なんたら run watch
系のコマンドを実行したとき、こんな感じに怒られる場合
1 | [nodemon] Internal watch failed: ENOSPC: System limit for number of file watchers reached, watch 'xxxxxxxx' |
inotifyの監視上限数を変更して回避する
1 | echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p |