LoginSignup
6
7

More than 5 years have passed since last update.

ENOSPC ってなんやねん!!

Last updated at Posted at 2018-09-06

今日のエラー

yarnでsnapshotを更新しようとしたら、ENOSPCと表示された。
なんやねんこれ

解決法

https://github.com/facebook/create-react-app/issues/4301
を見てみると、解説があった。

ENOSPCは、ディスクに十分な容量がないことを示すらしい。
丁寧に解決法の乗っているissueのリンクもあるから、そこをみれば全部解決。

https://github.com/facebook/create-react-app/issues/4227
から実行するコマンドはコレ。

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

これで無事にできた!!
良かったよかった。

まぁ、ディスク容量はあるに限るし、
定期的にやっておいたほうが良さそう。
Qiitaのこの記事もオススメ
https://qiita.com/oshou/items/2630f9f1c1131beb748e

コマンド解説

少々お待ちを

6
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
7