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?

wslコマンド

Posted at

wslを操作する
PowerShellターミナルで実行する

wslの環境の一覧を表示

wsl --list --verbose

実行結果

> wsl --list --verbose
  NAME            STATE           VERSION
* Ubuntu          Stopped         2
  IjiijiUbuntu    Stopped         2
  Ubuntu-20.04    Running         2

wslの中に入る

wsl -d <環境名>
wsl -d Ubuntu-20.04

wslの現在の環境をエクスポート

wsl --export <環境名> <ファイル名>.tar

上記実行結果のUbuntu-20.04を書き出すときは以下のようになる。

wsl --export Ubuntu-20.04 example.tar

wslの環境をインポート

wsl --import <新しい環境名> <インストールディレクトリ> example.tar
wsl --import newEnvName envDir example.tar
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?