0
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.

wsl デフォルトディストリビューションを付け替える方法

Last updated at Posted at 2023-05-30

本記事の内容

NAMEの欄で使用しているディストリビューションを変更します。要するに

これを

PS C:\Windows\system32> wsl --list --verbose
  NAME                   STATE           VERSION
* docker-desktop         Stopped         2
  Ubuntu-22.04           Running         2
  docker-desktop-data    Stopped         2

こうします

PS C:\Windows\system32> wsl --list --verbose
  NAME                   STATE           VERSION
  docker-desktop         Stopped         2
* Ubuntu-22.04           Running         2
  docker-desktop-data    Stopped         2

一覧

コマンド 用途
wsl --list --verbose ディストリビューション一覧取得
wsl --set-default ディストリビューション名 デフォルトのディストリビューションを変更します
wsl -d ディストリビューション名 一時的にディストリビューションを変更して使用します

コマンド

環境 windows11
Powershell

ディストリビューションの一覧を確認する

wsl --list --verbose

実行結果

PS C:\Windows\system32> wsl --list --verbose
  NAME                   STATE           VERSION
* docker-desktop         Stopped         2
  Ubuntu-22.04           Running         2
  docker-desktop-data    Stopped         2

デフォルトディストリビューションを付け替える

PS C:\Windows\system32> wsl --set-default ubuntu-22.04

確認結果

PS C:\Windows\system32> wsl --list --verbose
  NAME                   STATE           VERSION
* Ubuntu-22.04           Running         2
  docker-desktop-data    Stopped         2
  docker-desktop         Stopped         2

付け替えられています。

一時的に切り替える方法

PS C:\Windows\system32> wsl -d Ubuntu-22.04

参考

WSLを使用できるようにする方法

こちらの素晴らしい記事の通りに行いました。Ubuntu 22.04を使用しています。
https://qiita.com/rubytomato@github/items/a290ecef2ea86ea8350f

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