admin 管理员组

文章数量: 887016

文章目录

  • 安装
  • 报错
    • WslRegisterDistribution failed with error: 0x8007019e
    • WSL安装Linux报错WslRegisterDistribution failed with error: 0x80370102
    • WslRegisterDistribution failed with error:0x80370110
  • 使用
  • ubuntu gdm3和lightdm切换
  • Ubuntu远程桌面 connection log
    • login failed for display 0
    • connection problem
    • 远程连接失败
  • 安装anaconda
  • 相关资料

安装

打开Microsoft Store,搜索ubuntu系统,直接下载会自动安装。
,
安装教程可参考这篇博文,写的非常详细:https://www.jianshu/p/2bcf5eca5fbc

1、打开虚拟化,启动hyper-V、适用于Linux的Windows子系统和虚拟平台,先不要重启。
2、win+x打开Windows PowerShell(管理员),输入:

Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux

bcdedit /set hypervisorlaunchtype auto

然后重启
3、管理员权限打开PowerShell或者Command Prompt,输入wsl --install –d Ubuntu-20.04安装Ubuntu。记住自己的密码
4、下载更新包
https://wslstorestorage.blob.core.windows/wslblob/wsl_update_x64.msi
ARM64:https://wslstorestorage.blob.core.windows/wslblob/wsl_update_arm64.msi
5、转为WSL version 2,这里有可能安装完就已经是版本2了。
查看版本:wsl -l -v
转换版本:wsl --set-version Ubuntu-20.04 2

报错

WslRegisterDistribution failed with error: 0x8007019e

安装完成后打开可能会报错WslRegisterDistribution failed with error: 0x8007019e
报错如下:

Installing, this may take a few minutes...
Installation Failed!
Error: 0x8007019e
Press any key to continue...

原因: 未安装windows子系统支持

注:请先保存所有资料,安装过程中会自动重启!!!

解决办法:
1、win+x, 选择Windows PowerShell(管理员)
2、输入:
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
3、回车,输入Y,会自动重启
重启后再次打开等几分钟即安装完成。

WSL安装Linux报错WslRegisterDistribution failed with error: 0x80370102

看网上提示都是打开BIOS中的虚拟化技术和控制面板中勾选 Hyper-V、适用于 Linux 的 Windows 子系统、虚拟机平台。
我的已经勾选仍然报错。解决办法:先把这些全部关闭,卸载Ubuntu,然后重启电脑,再把这些全部打开,再次重启,再次安装就成功了

WslRegisterDistribution failed with error:0x80370110

暂时不清楚原因,报错后退出再次安装。

使用

重启后需要设置账户和密码。系统会自动显示一些系统基本信息。


在bash中,进入目录使用 cd /mnt/c 访问windows中的C盘

访问其他盘就是

cd /mnt/盘符

ubuntu gdm3和lightdm切换

sudo dpkg-reconfigure gdm3

Ubuntu远程桌面 connection log

login failed for display 0

进入远程桌面时,输入账号密码提示如下,点击ok会返回登录页面

原因是账号或密码不对,重新输入账号密码即可

connection problem


解决办法:
第一步

sudo apt-get install xserver-xorg-core
sudo apt-get -y install xserver-xorg-input-all

第二步:
sudo apt-get install xrdp
第三步:
sudo apt-get install xorgxrdp
参考资料:https://c-nergy.be/blog/?p=13390

远程连接失败

sudo /etc/init.d/xrdp restart 重启服务即可

安装anaconda

打开官网下载anaconda-linux版本
打开终端,进入anaconda安装包保存路径
bash Anaconda3-2021.11-Linux-x86_64.sh进行安装,

使用jupyter notebook启动失败,报错如下:

anaconda里面启动显示:

解决办法:
根据提示需要使用 --allow-root来启动
因此重新输入jupyter notebook --allow-root &便可顺利启动。

番外:
百度有人说重新安装即可,我重新安装后还是不行,终端输入jupyter notebook 结果如下:

相关资料

很齐全的资料:https://blog.csdn/xmh19936688/article/details/90212960
Linux图形界面知识
Windows 远程桌面连接Ubuntu操作以及各种问题解决

Anaconda集成的jupyterlab设置远程访问

本文标签: 子系统 商店 Windows Ubuntu