1. 安装cmake,gcc和clang
    sudo apt-get install cmake gcc clang gdb build-essential

  2. 安装openssh-server
    apt install openssh-server

  3. 确认openssh-server版本
    ssh -V

  4. 确认openssh-server状态

/etc/init.d/ssh status
/etc/init.d/ssh restart

  1. 重新启动 openssh-server
    /etc/init.d/ssh restart

  2. 配置并运行打开的ssh-server。
    wget https://raw.githubusercontent.com/JetBrains/clion-wsl/master/ubuntu_setup_env.sh && bash ubuntu_setup_env.sh

  3. 测试链接
    ssh username@localhost -p2222

  4. ssh配置

1
2
3
vim /etc/ssh/sshd_config
ListenAddress 127.0.0.1在行中,替换127.0.0.1为0.0.0.0。
PermitRootLogin yes
  1. 查看进程
    ps -e |grep ssh

CLION官网wsl说明