0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

linuxで設定したグループIDがvscodeのターミナルで変わらないときの対処法

Last updated at Posted at 2024-11-22

解決したいこと

  • vscodeのリモートSSHで、GPUサーバなどに接続している
  • GPUサーバ側で自分のグループIDを変更した
    IDの変更
      shibaura@server:~$ sudo usermod -aG docker shibaura
    
  • idコマンドでグループIDを出力しても、なぜか適用されていない
    理想
      shibaura@server:~$ id
      uid=1000(shibaura) gid=1000(shibaura) groups=1000(shibaura), 999(docker)
    
    現実(ダメ)
      shibaura@server:~$ id
      uid=1000(shibaura) gid=1000(shibaura) groups=1000(shibaura)
    

解決策

サーバ側のvscodeサーバを更新すればOK。
サーバ側に設置されている/home/.vscode-serverを削除して、再度vscodeのリモートSSHで接続すればよい

  • 作業1:vscodeを使ず、普通のターミナルで、特定フォルダを削除

     shibaura@local:~$ ssh shibaura@server
     shibaura@server:~$ rm -rf .vscode-server
    
  • 手順2:vscodeでリモートSSH接続する 👉 idコマンドを叩いてみると解決している

おわりに

  • ほえー
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?