web-dev-qa-db-ja.com

Ubuntu 18.04 LTS上のXorgがビデオを再生すると頻繁にクラッシュする

背景:私はデスクトップでUbuntuを2年間使用していますが、うまく機能しました。 Dell Inspiron 7373ラップトップで実行してみようと思いました。

問題:ほとんどの場合、Webストリーミングであろうとローカルファイルであろうと、ビデオ(ほぼ100%)を再生しようとするとXorgが頻繁にクラッシュするフルスクリーンモードに入った後。

セットアップ:

  • インテル®UHDグラフィックス620
  • デュアルモニター

ドライバーlshw -c video):

  *-display                 
   description: VGA compatible controller
   product: Intel Corporation
   vendor: Intel Corporation
   physical id: 2
   bus info: pci@0000:00:02.0
   version: 07
   width: 64 bits
   clock: 33MHz
   capabilities: pciexpress msi pm vga_controller bus_master cap_list rom
   configuration: driver=i915 latency=0
   resources: irq:125 memory:d0000000-d0ffffff memory:c0000000-cfffffff ioport:f000(size=64) memory:c0000-dffff

.crashログファイル:https://drive.google.com/open?id=1OY04fg0ubIrK0gMdiI70Yh-M0BCDQCB

Xorgログ:https://drive.google.com/open?id=1z_x_ZENUuFHxjbKKxtpn-wsUI5EGw15y

メモリfree;swapon):

              total        used        free      shared  buff/cache   available
Mem:       16159572     2052092    12783380      191092     1324100    13624140
Swap:       2097148           0     2097148
NAME      TYPE SIZE USED PRIO
/swapfile file   2G   0B   -2

私が試したこと:

1)20-intel.confを設定します

Section "Device"
 Identifier "Card0"
 Driver "Intel"
 Option "AccelMethod" "uxa"
EndSection

2)Sudo apt updateupgrade

3)Chromeでハードウェアアクセラレーションを無効/有効にします

他に役立つログがある場合は、お知らせください。ありがとうございました!

1
Jayson Cheng

それが最善の修正かどうかはわかりませんが、誰かの助けになることを願っています。

これらの2つの変更を行った後、クラッシュは停止しました。

  1. easystrokeをアンインストールする
  2. /usr/share/X11/xorg.conf.d/20-intel.confを変更

    Section "Device"
      Identifier  "Intel Graphics"
      Driver "Intel"
      Option "AccelMethod" "sna"
    EndSection
    
2
Jayson Cheng