WSL Ubuntu 无法打开

WSL Ubuntu 无法打开

我已经安装了 WSL Ubuntu。当我单击“开始”菜单中的 Ubuntu 图标时,它会返回一个带有 的命令屏幕username@computername:~$。我不知道在 $ 后输入什么。我尝试了wslububtu其他猜测,但都没有效果。

答案1

我已尝试过wslububtu其他猜测,但均无效果。

从评论来看,您期望发生什么还不太清楚。我可以看到两种可能性:

  • 您似乎认为您需要在 WSL 上“登录”到 Ubuntu,但事实并非如此。
  • 您似乎正在尝试启动某个东西;也许是 Ubuntu 桌面?

您看到的提示只是普通的 Bash shell 提示,您可以从此开始输入 Linux 命令。如果您期待桌面体验,我真诚地建议您考虑在 Windows 下的虚拟机中运行 Ubuntu,而不是使用 WSL2。虽然您可以获得桌面体验,但这绝对不是 WSL 的设计目的。WSL 始终会启动到命令行/shell。

但是,如果您确实想通过命令行使用 Ubuntu,请尝试:

# Show the contents of your Ubuntu user's home directory
ls -lah ~
# Update all of the currently installed packages 
# for Ubuntu to the latest versions available in the repository
sudo apt update && sudo apt upgrade -y
# Run the Python interpreter REPL
python3
# Run Windows Notepad
notepad.exe
# Open File Explorer on the current Linux directory
explorer.exe .
# Exit the Bash shell (and thus Ubuntu)
exit
# Also Ctrl+D

至于“登录”,WSL 确实不需要。WSL2 中的 Ubuntu 以容器而不是虚拟机。您只是“进入”Ubuntu容器。WSL2 使用您的默认用户名,无需密码。请参阅这个答案为什么这不是一个安全问题。

相关内容