@gaohdu99Codex APP 使用remote连接WSL 中发帖

场景:需要本地Windows Native开发,也需要WSL开发,还需要Remote SSH开发。 
目前Codex APP的设置里可以手动选择Agent 为 wsl 还是 Native,不知道是哪个脑袋想出来的方案。
既然目前支持remote ssh了。那么直接ssh登录wsl即可。

wsl 支持 ssh

sudo apt update
sudo apt install -y openssh-server bubblewrap
sudo systemctl enable ssh
sudo systemctl start ssh

sudo nano /etc/ssh/sshd_config


配置如下,避开22端口

Port 2222
PubkeyAuthentication yes
PasswordAuthentication no

sudo systemctl res...