首先参考这篇文章,在windows10上安装linux包

1
https://www.jianshu.com/p/bc38ed12da1d

如果linux出现什么无法修复的问题时,需要卸载重装,

1
2
卸载命令: lxrun /uninstall /full
安装命令: lxrun /install /y

安装成功之后,

打开cmd,运行bash命令

命令行运行 bash 进入Ubuntu, 默认使用的 root 帐号登录,可以通过指令 passwd 设置密码。

1
# passwd root

(可选) 安装ssh

因为cmd无法复制和粘贴,使用不太方便,所以在ubuntu中安装ssh

1
2
3
4
5
6
7
8
9
10
11
12
13
 apt-get install openssh-server
dpkg-reconfigure openssh-server

修改/etc/ssh/sshd_config
# Port 23(22端口已被占用) #
# (取消注释)ListenAddress 0.0.0.0 #
# UsePrivilegeSeparation no #
# PermitRootLogin yes #
# (注释)StrictModes yes #
# PasswordAuthentication yes


service ssh start

(可选) 安装putty

下载: https://the.earth.li/~sgtatham/putty/latest/w64/putty.exe

配置 ssh连接到本机的127.0.0.1:23

(可选) 运行mtputty,让putty支持多标签

下载 http://www.ttyplus.com/downloads.html, 免安装,直接运行
放到跟putty一个目录,免安装,点击mtputty运行即可
配置 ssh连接到本机的127.0.0.1:23

(可选) 安装zsh

zsh有很多特性,比bash使用起来方便很多

1
apt-get -y install zsh

配置zsh,使用一个默认配置

1
2
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc