打开windows的linux子系统功能
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-j8DqqU0n-1667715531403)(C:\Users\hgy\AppData\Roaming\Typora\typora-user-images\image-20221106132220062.png)]
打开开发者选项
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-v8YkPXJc-1667715531404)(C:\Users\hgy\AppData\Roaming\Typora\typora-user-images\image-20221106132301106.png)]
windows store下载安转, 搜索linux或者ubuntu或者centos都可以
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-VP2U88SJ-1667715531404)(C:\Users\hgy\AppData\Roaming\Typora\typora-user-images\image-20221106132412354.png)]
注意如果安装时候报错如下:
Installing, this may take a few minutes.
WslRegisterDistribution failed with error: 0x8007019e
The Windows Subsystem for Linux optional corrponent is not enabled.
See https://aka.ms/wslinstall for details.
Press any key to continue.
Please enable it and try again.
下载wsl更新程序更新即可
https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi
sudo passwd root
第一次输入初始用户密码
然后输入两次root需要设置的密码
su root
apt install -y gcc
apt install -y g++
apt install -y make
# 安装调试工具 gdb
apt install -y gdb
apt install -y ctags
apt install -y tree
apt install -y openssh-server
...
# 中文的语言包
apt install -y language-pack-zh-han*
让语言对所有用户都生效, 写入/etc/profile文件中
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-10zOxq6B-1667715531404)(C:\Users\hgy\AppData\Roaming\Typora\typora-user-images\image-20221106133626975.png)] 末尾追加
或者写入到当前用户的home目录下的~/.profile
修改ssh的端口成2222, 因为windows使用的端口也是22, 避免冲突
运行密码验证登录
sudo vim /etc/ssh/shh_config
Port 2222
# 运行用密码登录
PasswordAuthentication yes
# 运行用root用户登录, 源码没有, 直接添加即可
PermitRootLogin yes
重启ssh服务即可
sudo service ssh --full-restart
* Stopping OpenBSD Secure Shell server sshd [ OK ]
* Starting OpenBSD Secure Shell server sshd
sshd: no hostkeys available -- exiting. [fail]
报错处理如下
ssh-keygen -A
设置umask默认为002
如果直接在命令行执行, 重启就会失效, 配置在/etc/profile中
vim /etc/profile