Ubuntu 16.04 外接顯示器偵測無法正常運作

Ubuntu 16.04 外接顯示器偵測無法正常運作

我使用華碩 UX305L 和透過 micro HDMI 連接的外部顯示器三星 SyncMasterF2380。然而,在全新安裝 Ubuntu 後,外部顯示器有時會出現以下「奇怪」問題:

  1. Ubuntu 系統啟動後不偵測外部顯示器。但是,如果我多次單擊“系統設定”圖標,就會出現這種情況。
  2. Ubuntu 在系統啟動後不會偵測外部顯示器並更改筆記型電腦螢幕的解析度。當我多次單擊系統設定圖標後,它確實檢測到外部顯示器並將筆記型電腦螢幕的解析度更改回來。

/etc/X11/xorg.conf.d/20-intel.conf

Section "Device"
   Identifier  "Intel Graphics"
   Driver      "intel"
   Option      "TearFree"    "true"
   Option      "AccelMethod"  "uxa"
EndSection

/etc/X11/xorg.conf.d/monitors.conf

Section "Monitor"
  Identifier "HDMI1"
  Option "LeftOf" "Screen 0"
EndSection

Section "Monitor"
  Identifier "Screen 0"
  Option "RightOf" "HDMI1"
EndSection

/etc/X11/xorg.conf.d/螢幕解析度.conf

Section "Screen"
  Identifier "HDMI1"
  SubSection "Display"
  Modes "1920x1080"
  EndSubSection
EndSection

Section "Screen"
  Identifier "Screen 0"
  SubSection "Display"
  Modes "1600x900"
  EndSubSection
EndSection

xrandr -q 顯示

Screen 0: minimum 320 x 200, current 3840 x 1080, maximum 8192 x 8192
eDP1 connected primary 1920x1080+1920+0 (normal left inverted right x axis y axis) 293mm x 165mm
   1920x1080     60.00*+  59.93  
   1680x1050     59.95    59.88  
   1600x1024     60.17  
   1400x1050     59.98  
   1280x1024     60.02  
   1440x900      59.89  
   1280x960      60.00  
   1360x768      59.80    59.96  
   1152x864      60.00  
   1024x768      60.00  
   800x600       60.32    56.25  
   640x480       59.94  
HDMI1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 510mm x 287mm
   1920x1080     60.00*+  59.94  
   1600x1200     60.00  
   1680x1050     59.88  
   1280x1024     75.02    60.02  
   1440x900      59.90  
   1280x960      60.00  
   1280x800      59.91  
   1152x864      75.00  
   1280x720      60.00    59.94  
   1024x768      75.08    70.07    60.00  
   832x624       74.55  
   800x600       72.19    75.00    60.32    56.25  
   640x480       75.00    72.81    66.67    60.00    59.94  
   720x400       70.08 

答案1

據報道,您不能同時使用加速方法TearFreexua您需要使用sna預設的加速方法,因此您可以簡單地刪除/etc/X11/xorg.conf.d/20-intel.

更多詳細資訊可以在 Arch Linux 文件中找到英特爾顯示卡

雖然幾個月前我遇到過一些螢幕撕裂的情況,但在更新一些 Ubuntu 核心後它會自行消失,並且可能您的系統不再需要該選項。您想要刪除該選項(如果不再需要)的原因是可能會發生連結中所述的其他衝突。

相關內容