🔖

Windowsのgit-bashでX転送する方法

2024/02/24に公開

普通にやるとunable to open X serverって言われる。

ホームディレクトリに.bash_profileを追加して、
に以下を記入

export DISPLAY=localhost:0.0

その上で、以下を行う

ssh -X <user>@<server_addresss>

参考:
https://jdhao.github.io/2018/03/02/Windows-connect-server-x11-with-gitbash/

Discussion