vscode 로 라즈베리파이에 접근하여 원격으로 작업시 "Visual Studio Code is unable to watch for file changes in this large workspace" 오류가 종종 발생했습니다.
그동안 계속 무시하고 있었는데 오늘은 해결책을 찾아봤네요.
ms 에서는 다음 링크에 어떻게 할 지 안내하고 있습니다.
간단하게 정리를 해보면..
- 현재 max_user_watches 값 확인
- cat /proc/sys/fs/inotify/max_user_watches
- 제 경우 이 값이 8192가 나왔습니다..
- cat /proc/sys/fs/inotify/max_user_watches
- 시스템 설정에 최대값(524288) 지정
- sudo vim /etc/sysctl.conf
- fs.inotify.max_user_watches = 524288
- 적용
- sudo sysctl -p
'IT > RaspberryPi' 카테고리의 다른 글
buster(debian 10) 에 docker 설치하기 (0) | 2024.12.02 |
---|---|
[python3] poetry 설치해보기 (0) | 2024.04.04 |
[raspberry pi][python3] 라즈베리 파이 모델 확인하기 (0) | 2023.12.28 |
[raspberrypi 4b] 자동 로그인 옵션 관련 (2) | 2023.12.05 |
[raspberry pi 4B][python3] 라즈베리 파이 csi 카메라 체크하기 (0) | 2023.11.17 |