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

More than 3 years have passed since last update.

WSL2でUbuntuデスクトップ環境をインストールするときのメモ書き

Last updated at Posted at 2021-11-03
  • WSL2とUbuntu20.04をインストールする
  • VcXsrvをwindows側にインストールする
  • windows側でVcXsrvを起動する
    • DisplaySettingは「One large window」を選択
  • WSL2でUbuntu20.04を起動する

以下のコマンドを実行

sudo apt upadate -y
sudo apt upgrade -y

sudo apt install -y libgl1-mesa-dev xorg-dev xbitmaps x11-apps

export DISPLAY={windows側のIPアドレス}:0.0
#ex export DISPLAY=192.168.XX.XX:0.0

以下のコマンドでディスプレイが正しく設定できているのかを確認する

xeyes

目のウィンドウがwindows側に表示されればOK
ウィンドウを閉じる

以下のコマンドでubuntu-desktopをインストールし、GUIを起動

sudo apt -y install ubuntu-desktop
sudo service x11-common start
sudo service dbus start 
gnome-shell --x11 -r

インストール直後は、正しく動作しないかもしれないので、一度再起動したほうがよいかもしれない。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?