TeamViewer lento no Ubuntu sem monitor 16.04

2

Após reiniciar meu servidor sem um monitor conectado, o TeamViewer é extremamente lento. Mas se eu reiniciar com um monitor, ele corre bem. Como posso fazê-lo funcionar normalmente sem um monitor conectado?

    
por BinaryShrub 05.04.2018 / 04:28

2 respostas

2

Instale um servidor fictício:

sudo apt-get install xserver-xorg-video-dummy-lts-xenial

Adicione um arquivo /etc/X11/xorg.conf com o seguinte conteúdo:

Section "Device"
    Identifier  "Configured Video Device"
    Driver      "dummy"
EndSection
Section "Monitor"
    Identifier  "Configured Monitor"
    HorizSync 31.5-48.5
    VertRefresh 50-70
EndSection
Section "Screen"
    Identifier  "Default Screen"
    Monitor     "Configured Monitor"
    Device      "Configured Video Device"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1024x800"
    EndSubSection
EndSection
    
por waspinator 29.06.2018 / 17:56
1

Adicionar um monitor falso corrige o problema:

sudo apt install xserver-xorg-video-dummy
sudo wget -P /etc/X11 https://gist.githubusercontent.com/mangoliou/ba126832f2fb8f86cc5b956355346038/raw/b6ad063711226fdd6413189ad905943750d64fd8/xorg.conf
    
por BinaryShrub 05.04.2018 / 04:28