4
5

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 のディレクトリ移動したかったニャ

Posted at

これは?

Wsl2 のディレクトリを移動したかった。
ググった。
StackDriverに書いてあった > Can I move the linux subsystem to a different drive?

移動

stackdriver のまんま

# check linux
C:\WINDOWS\system32> wsl -l -v
  NAME            STATE           VERSION
* Ubuntu-18.04    Stopped         1
  Ubuntu-20.04    Stopped         1

# export
C:\WINDOWS\system32> wsl.exe --export Ubuntu D:\data\wsl-images\ubuntu.tar

# change drive and folder
C:\WINDOWS\system32> D:
D:> cd D:\data\wsl-images

# remove
D:> wsl --unregister Ubuntu-20.04

# import
D:> cd dev\wsl-images
D:\data\wsl-images>mkdir ubuntu20
D:\data\wsl-images>wsl --import Ubuntu-20.4 .\ubuntu20   ubuntu20.tar

起動

wsl -d Ubuntu-20.4 -u xxxx
4
5
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
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?