新しい xrandr モードを使用すると、表示が停止します。

新しい xrandr モードを使用すると、表示が停止します。

画面解像度の調整に問題があります。次のコマンドを実行しています。

xrandr --newmode "1600x900_60.00" 118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync
xrandr --addmode eDP-1 1600x900_60.00
xrandr --output eDP-1 --mode 1600x900_60.00

最初の2つのコマンドは正常に機能しましたが、最後のコマンドではディスプレイがフリーズしてコンピュータを再起動するために電源ボタンを押す必要がありました。コンピュータでアップデートを実行するまで、3つのコマンドすべてが正しく機能しました。

この資料を次のコマンドのガイドとして使用しています。https://askubuntu.com/questions/377937/how-to-set-a-custom-solution

この問題を解決する方法に関する提案はありますか?

私のシステムと私が使用しているタイリングウィンドウマネージャに関する情報は次のとおりです。

[me]/me$ uname -a
Linux me 4.13.3-1-ARCH #1 SMP PREEMPT Thu Sep 21 20:33:16 CEST 2017 x86_64 GNU/Linux
[me]/me$ xmonad --version
xmonad 0.13

追加の詳細:

最初の行のパターンはを実行して得られ、cvt 1600 900 60次のような出力が提供されます。

[me]/me$ cvt 1600 900 60
Modeline  "1600x900_60.00" 118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync

xrandr最初の2つのコマンド以降の出力は次のとおりです(1600x900_60.00追加した新しいエントリに注意してください)。

[me]/me$ xrandr
Screen 0: minimum 320 x 200, current 2560 x 1440, maximum 8192 x 8192
eDP-1 connected primary 2560x1440+0+0 (normal left inverted right x axis y axis) 310mm x 174mm
   2560x1440     60.00*+
   1920x1440     60.00
   1856x1392     60.01
   1792x1344     60.01
   1600x1200     60.00
   1400x1050     59.98
   1280x1024     60.02
   1280x960      60.00
   1024x768      60.04    60.00
   960x720       60.00
   928x696       60.05
   896x672       60.01
   800x600       60.00    60.32    56.25
   700x525       59.98
   640x512       60.02
   640x480       60.00    59.94
   512x384       60.00
   400x300       60.32    56.34
   320x240       60.05
   1600x900_60.00  59.95
DP-1 disconnected (normal left inverted right x axis y axis)
HDMI-1 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
HDMI-2 disconnected (normal left inverted right x axis y axis)

私のドライバーに関する情報は次のとおりです。

[me]/me$ lspci
00:00.0 Host bridge: Intel Corporation Broadwell-U Host Bridge -OPI (rev 09)
00:02.0 VGA compatible controller: Intel Corporation HD Graphics 5500 (rev 09)
00:03.0 Audio device: Intel Corporation Broadwell-U Audio Controller (rev 09)
00:14.0 USB controller: Intel Corporation Wildcat Point-LP USB xHCI Controller (rev 03)
00:16.0 Communication controller: Intel Corporation Wildcat Point-LP MEI Controller #1 (rev 03)
00:19.0 Ethernet controller: Intel Corporation Ethernet Connection (3) I218-LM (rev 03)
00:1b.0 Audio device: Intel Corporation Wildcat Point-LP High Definition Audio Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #2 (rev e3)
00:1c.1 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #3 (rev e3)
00:1d.0 USB controller: Intel Corporation Wildcat Point-LP USB EHCI Controller (rev 03)
00:1f.0 ISA bridge: Intel Corporation Wildcat Point-LP LPC Controller (rev 03)
00:1f.2 SATA controller: Intel Corporation Wildcat Point-LP SATA Controller [AHCI Mode] (rev 03)
00:1f.3 SMBus: Intel Corporation Wildcat Point-LP SMBus Controller (rev 03)
00:1f.6 Signal processing controller: Intel Corporation Wildcat Point-LP Thermal Management Controller (rev 03)
04:00.0 Network controller: Intel Corporation Wireless 7265 (rev 99)

ベストアンサー1

xf86-video-intelpacmanをインストールしてこのエラーを解決しましたlibva-intel-driver。これらのパッケージに関する関連文書は次のとおりです。https://01.org/linuxgraphics/community/xf86-video-intelそしてhttps://01.org/linuxmedia/vaapi

また、次のリソースが役に立ったと思います。https://wiki.archlinux.org/index.php/Intel_graphics

このエラーも関連している可能性があると思います。https://bbs.archlinux.org/viewtopic.php?pid=1623936#p1623936

1600x900また、このパッケージをインストールした後、デフォルトでモードが存在するため、その解像度xrandrに対して新しいモードを作成する必要がなくなることがわかりました。だから私はそれを使用しており、これもこのエラーを防ぎます。

おすすめ記事