我花了几天时间尝试在我的笔记本电脑上安装 Windows 10 ISO:
我重置了 BIOS 设置,因为它不起作用,但仍然没有任何效果。USB 未出现在 BIOS 菜单中。
有什么建议么?
我已经Visual Studio Code
安装在 flatpak 中,我运行它:
flatpak run --command=sh com.visualstudio.code
我想将 shell 更改为zsh
,但我找不到如何更改,我在我的 中尝试了多种方法settings.json
:
...
"terminal.integrated.shell.linux": "/usr/bin/flatpak-spawn",
"terminal.integrated.shellArgs.linux": ["--host", "run", "env", "TERM=xterm-256color", "zsh"],
...
Run Code Online (Sandbox Code Playgroud)
和
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/usr/bin/flatpak-spawn",
"args": ["--host", "--env=TERM=xterm-256color", "zsh"]
}
}
Run Code Online (Sandbox Code Playgroud)
没有一个有效。