VSCode 경고 알림 해결(Unable to watch for file changes in this large workspace folder)

happy_quokka·2024년 1월 20일
0

Error

목록 보기
4/7

오류

Unable to watch for file changes in this large workspace folder. Please follow the instructions link to resolve this issue.

원인

  • 프로젝트 내의 파일 개수가 VSCode의 파일 감시자가 핸들링 할 수 있는 파일 개수보다 많아서 발생한다
  • 현재 핸들링 가능한 파일 개수의 최대 값은 아래의 명령어로 확인할 수 있다
cat /proc/sys/fs/inotify/max_user_watches

해결

/etc/systeml.conf 파일에 아래의 내용을 맨 아래에 추가하면 된다

fs.inotify.max_user_watches=524288

reference

https://code.visualstudio.com/docs/setup/linux#_visual-studio-code-is-unable-to-watch-for-file-changes-in-this-large-workspace-error-enospc

0개의 댓글