將 X-Windows 的 GUI 視窗顯示到 Windows 上。
在本地主機加 ForwardX11
, ForwardX11Trusted
在遠端主機加入環境變數
這個變數有分為 IP 和 Display Number,用冒號區隔。
export DISPLAY=192.168.11.10:10.0
echo $DISPLAY
在本地主機安裝 VcXsrv,執行 XLaunch
,設定 Display Number
在遠端主機執行 UI 程式,即可在本地主機上顯示。
xeyes
可以在 launch.json
加入環境變數
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: <https://go.microsoft.com/fwlink/?linkid=830387>
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"env": {
"DISPLAY": "192.168.11.10:10.0",
},
"justMyCode": false,
}
]
}