본문 바로가기

Development/WSL2

[WSL 2] Error - Failed to save file, EACCESS permision denied

728x90

Problem

"Failed to save 'file.js': Unable to write file (NoPermissions (FileSystemError): Error: EACCES: permission denied, open '/opt/path/to/folder/file.js')"와 같은 에러가 WSL 2 환경의 VS code에서 나타난다. error가 나타나면서 파일을 수정한 내용들이 저장이 되지 않는 문제가 생겼다.

Solution

sudo chown -R user /path/to/folder

위의 명령어로 해결하였다.

나의 경우에는 현재 로그인한 user가 logan이기 때문에 sudo chown -R logan . 으로 하였지만, 해결되지 않았다. 그래서 원래 user인 ubuntu로 sudo chown -R ubuntu . 로 입력하니 에러가 해결되었다.

다음으로 궁금한 것은 ubuntu와 logan의 차이가 무엇인지 알아봐야겠다.

Life's go on...

728x90