Linux子系统

来自Shiyin's note
跳到导航 跳到搜索

启用

ssh登录

ifconfig  #查看ip地址
sudo apt-get remove --purge openssh-server   ## 先删ssh
sudo apt-get install openssh-server          ## 在安装ssh   
sudo rm /etc/ssh/ssh_config                  ## 删配置文件,让ssh服务自己想办法链接
sudo service ssh --full-restart