작심삼일

[vscode] Failed to save : Unable to write file 'vscode-remote://ssh-remote' (NoPermissions (FileSystemError): Error: EACCES: permission denied, open) 본문

정리/잡 에러들

[vscode] Failed to save : Unable to write file 'vscode-remote://ssh-remote' (NoPermissions (FileSystemError): Error: EACCES: permission denied, open)

yun_s 2024. 9. 10. 21:22
728x90
반응형

에러

vscode로 ssh로 접속한 파일을 저장하려할 때, 권한이 없다고 다음과 같은 에러를 만났다.

Failed to save : Unable to write file 'vscode-remote://ssh-remote' (NoPermissions (FileSystemError): Error: EACCES: permission denied, open)

 

해결 방안

내가 사용하고있는 USER한테 모든 파일을 수정할 수 있는 권한을 주면 된다.

이때 USER는 terminal에 들어갔을 때 나오는 이름이라고 생각하면 된다.

sudo chown -R $USER*

 

728x90
반응형
Comments