Linux RDP 会话中无法打开VSCode 解决办法

github issue: VS Code "and still" won't open in a Linux xrdp session

Workaround- Linux RDP 会话中无法打开VSCode 解决办法

This time around I resolved the issue by narrowing the following Hack in two steps:

  1. Copy the system file 'libxcb.so.1.1.0' to the VS Code Insider folder:

    copy /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0 /usr/share/code-insider

  2. Last execute the sed stream editor command to alter value:

    sudo sed -i 's/BIG-REQUESTS/_IG-REQUESTS/' /usr/share/code-insider/libxcb.so.1.1.0
    sudo sed -i 's/BIG-REQUESTS/_IG-REQUESTS/' /usr/share/code/libxcb.so.1.1.0

After these step were completed, I was able to open VS Code Insider on a xrdp session.

must important I didn't have to alter the system file "libxcb.so.1.1.0" as in previous posts was done in the "/usr/lib/x86_64-linux-gnu/" location.

原文地址:https://www.cnblogs.com/FLY_DREAM/p/13894345.html