How to properly configure xstartup file for TightVNC with Ubuntu VPS GNOME environment

前端 未结 3 2046
隐瞒了意图╮
隐瞒了意图╮ 2021-02-07 15:50

I\'d like to access my Ubuntu 16.10 VPS (Contabo) with using a GNOME environment with VNC, however I am still facing some issues that I couldn\'t solve so far. To install and co

3条回答
  •  春和景丽
    2021-02-07 16:52

    For security reasons, X11 has disabled indirect GLX rendering by default. This change has finally made it into the mainstream Linux flavors. To enable IGLX, edit the Xorg file and add the “+iglx” flag. Then reboot the machine.

    sudo vi /usr/bin/Xorg
    
    basedir=/usr/lib/xorg
    if [ -x "$basedir"/Xorg.wrap ]; then
       exec "$basedir"/Xorg.wrap "$@"
    else
       exec "$basedir"/Xorg "$@" +iglx
    fi
    

提交回复
热议问题