LoginSignup
1
0

More than 1 year has passed since last update.

Ubuntu22.04 VSCodeのLive Shareが起動しない問題

Posted at

環境

  • Ubuntu 22.04 LTS (WSLのUbuntuでも、Ubuntu Desktopでも検証済)
  • Visual Studio Code
  • Live Share Extension Pack

発生している問題

拡張機能からLive Share Extension Packのインストールは問題なくできるが、「Join」や「Share」などのボタンを押しても何も反応しない。
image.png

手っ取り早く解決方法

1.下記コマンドでlibssl1.1を取得

wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb
sudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb

2.VS codeを再起動

完了

Ubuntu 22.04でLive Shareが起動しない原因

Live Shareを動かすためには「libssl1.1」が必要だが、Ubuntu 22.04ではデフォルトで入っていないのが原因。
libssl1.1を手動で入れる必要がある。

参考

余談

上記のissueでは、下記の方法でlibssl1.1をインストールしているが、筆者の環境ではimpish-securityを読み込めなかったため、wgetでの方法をおすすめします。

echo "deb http://security.ubuntu.com/ubuntu impish-security main" | sudo tee /etc/apt/sources.list.d/impish-security.list
sudo apt update
sudo apt install libssl1.1
1
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
1
0