O que eu encontrei como solução alternativa, mas quando eu conecto uma tela não há mais imagem
-
Instale o monitor fictício
sudo apt-get install xserver-xorg-video-dummy
-
Faça o backup de xorg.conf
sudo mv /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
-
Crie um novo xorg.conf
sudo gedit /etc/X11/xorg.conf
com
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 "1152x864"
EndSubSection
EndSection