Guest User

Untitled

a guest
Apr 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. # there is no monitor attached
  2.  
  3. $ xrandr -q -d :0
  4. Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 4096 x 4096
  5. VGA-1 disconnected primary (normal left inverted right x axis y axis)
  6. LVDS-1 disconnected (normal left inverted right x axis y axis)
  7. DVI-D-1 disconnected (normal left inverted right x axis y axis)
  8. DP-1 disconnected (normal left inverted right x axis y axis)
  9.  
  10. # Write in xorg.conf
  11.  
  12. $ cat /etc/X11/xorg.conf
  13. Section "Device"
  14. Identifier "Configured Video Device"
  15. EndSection
  16.  
  17. Section "Monitor"
  18. Identifier "Configured Monitor"
  19. EndSection
  20.  
  21. Section "Screen"
  22. Identifier "Default Screen"
  23. Monitor "Configured Monitor"
  24. Device "Configured Video Device"
  25. SubSection "Display"
  26. Virtual 1920 1080
  27. EndSubSection
  28. EndSection
  29.  
  30. # for disabling the LVDS-1 Port because it show as connected even if it's now
  31. robo@demopc16:~$ cat /etc/default/grub
  32. ...
  33. GRUB_CMDLINE_LINUX_DEFAULT="{} video=LVDS-1:d"
Add Comment
Please, Sign In to add comment