4
4

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にUbuntu20.04LTSをインストール

Posted at

WSLのインストール

WSLがまだインストールされていない場合、インストールが必要です。

管理者として PowerShell を開き、以下を実行。

PS > dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart

WSL2 に更新

「仮想マシン プラットフォーム」のオプション コンポーネントの有効化

WSL2 に必要な、「仮想マシン プラットフォーム」オプション機能を有効にする必要があります。

管理者として PowerShell を開き、以下を実行。

PS > dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart

WSL2 を既定のバージョンとして設定

新しい Linux ディストリビューションをインストールするときに、WSL2 を既定のバージョンとして設定します。

管理者として PowerShell を開き、以下を実行。

PS > wsl --set-default-version 2

Ubuntu 20.04 LTS のインストール

WSL2にUbuntu20.04LTSをインストールします。
MIcrosoftStoreから「ubuntu」で検索し、「入手」(または「インストール」)ボタンを押してインストール。

WSLのバージョン確認

PowerShell を開き、以下を実行。

PS > wsl --list -v
  NAME              STATE           VERSION
* Ubuntu-20.04      Running         2

Ubuntu-20.04が、VERSION 2 (WSL2)で動作しているのを確認できます。

以上。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?