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

前端之家收集整理的这篇文章主要介绍了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.

猜你在找的Linux相关文章