web-dev-qa-db-ja.com

モニター16.04なしのUbuntuでTeamViewerが遅くなる

モニターを接続せずにサーバーを再起動すると、TeamViewerの動作が非常に遅くなります。しかし、モニターで再起動すると問題なく実行されます。モニターを接続せずに通常のように動作させるにはどうすればよいですか?

3
BinaryShrub

ダミーサーバーをインストールします。

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

次の内容の/etc/X11/xorg.confファイルを追加します。

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
3
waspinator

偽のモニターを追加すると、問題が修正されます。

Sudo apt install xserver-xorg-video-dummy
Sudo wget -P /etc/X11 https://Gist.githubusercontent.com/mangoliou/ba126832f2fb8f86cc5b956355346038/raw/b6ad063711226fdd6413189ad905943750d64fd8/xorg.conf
1
BinaryShrub