Op deze pagina vindt u een aantal problemen waarvoor Suares & Co oplossingen zocht.
Technology
On this page some solutions we found for some uncommon issues.
Avoiding Xgl on Ubuntu Hardy LTSP thin clients
18-06-2008
Avoiding Xgl on Ubuntu Hardy LTSP thin clients
I have two dual-head Nvidia G70 [GeForce 7300 GT] (rev a1) video adapters. I could not get Compiz and Cairo-Dock to work nicely without installing Xgl (xserver-xgl). This resulted in my thin clients, that connect via LTSP to my desktop computer, to also try to load Xgl. Oliver Grawert fixed this with a script.
You need to make a file
/etc/X11/Xsession.d/85-ltsp-xgl-handler
in the root filesystem (not in the chroot /opt/ltsp/i386 !) with the following contents:
if [ -n "$LTSP_CLIENT" ]; then
mkdir -p ~/.config/xserver-xgl
touch ~/.config/xserver-xgl/disable
else
rm ~/.config/xserver-xgl/disable
fi
The next time you reboot your thin clients, Xgl will be disabled.