1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

VSCODE remote explorerが権限情報をキャッシュしてしまう件

Posted at

VSCODEでファイル権限がない状態で一度接続してしまうと、その後グループ書き込み権などを付与してSSHなどでは書き込みできるようになった後も、VSCODEを開きなおす(接続しなおす)だけでは解決しない。

Visual Studio Code – NoPermissions (FileSystemError): Error: EACCES: permission denied

解決策
https://github.com/microsoft/vscode-remote-release/issues/3399
サーバー側で稼働しているvscode-serverを落とす

ps aux | grep .vscode-server | awk '{print $2}' | xargs kill -9

ありがとう。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?