Last active
December 29, 2020 03:20
-
-
Save ttokutake/1b9c353c672ee469ea8747f260840b4d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
実は存在しているということだった、ありがたし | |
この辺を参考にした | |
https://tayledras.com/wiki/index.php?title=HOW-TO:_Backup_or_Move_WSL2_Distro#Backup_and_Restore_WSL2_Distros | |
https://stackoverflow.com/questions/64185560/where-are-the-files-inside-wsl2-physically-stored | |
Powershellで確認した | |
ディレクトリはどこ良いのかとかあんまりわかっていないので適当 | |
`C:\Users\<UserName>\AppData\Local\Packages\TheDebianProject.DebianGNULinux_<Hash>\LocalState` にvhdxファイルがあるけどここに置くのが良いのか | |
``` | |
$ wsl --list -v # ディストリビューションの名前確認 | |
$ wsl --export Debian C:\Users\tadat\Documents\Debian.tar | |
$ wsl --unregister Debian | |
$ wsl --import Debian C:\Users\tadat\Documents\Debian C:\Users\tadat\Documents\Debian.tar # 実はまだ確認していない | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment