ubuntu移动到其他盘可以参考WSL Ubuntu子系统迁移到非系统盘
下面问题是我安装时遇到的,不代表所有人都是这个问题。
ubuntu.exe config --default-user username
时,会创建一个新的ubuntu系统出来,而不是直接链接到我们import
进来的ubuntu系统。wsl --import <Distro> <InstallLocation> <FileName> --version 2
中的名字<Distro>
要与自己电脑上的ubuntu<版本>.exe
对应。因为Distro是指要导入的Linux发行版的名称,不是随便起的名字。 举个例子:
假如你电脑上ubuntu对应的exe是ubuntu.exe , 那么你这里应该是wsl --import Ubuntu ...
假如你电脑上ubuntu对应的exe是ubuntu2204.exe , 那么你这里应该是wsl --import Ubuntu-22.04 ...
因此你之后执行其他命令使用ubuntuxx.exe
时具体的名称是取决于你电脑上的exe文件名称。
2.出现错误:执行ubuntu2204.exe config --default-user username
时,出现
id: ‘username’: no such user
Error: 0x80070057 ?????
这是因为你刚刚导入的那个ubuntu系统里没有对应的username
用户,可以正常启动wsl先使用root用户登录,然后使用
sudo adduser username
sudo usermod -aG sudo username
创建用户即可,详见如何在Ubuntu创建和删除用户。创建完之后退出wsl重新执行上面的命令就可以了。