最小情報
質問をして、このコマンドで生成されたリンクを追加します
sudo apt-get install pastebinit; sudo sh -c "lsb_release -sd; dmidecode -s system-product-name; echo ==; lshw -c display; echo ==; xrandr --verbose; echo ==; cat /etx/X11/xorg.conf" | tee ~/Desktop/ubuntu-graphic-info.txt | pastebinit
トラブルシューティング
ちょっとした話
しばらく使用してIntel GPUで遊んでみたので、思ったよりもずっと複雑xrandr
でした。時々、予期しないエラーが発生します。これは私の経験の夏です。
私が理解しているように、これは単純化された完全なスタックリストです。
xrandr
└─ Xorg (w/ driver specific module)
└─ kernel
└─ driver
│
graphic card
└─ cables (kvm switch/connection adapter)
└─ monitor
トラブルシューティングするのは本当に大きなスタックであり、古いハードウェアと独自のローリングドライバーの更新では困難であり、DB-15 VGAケーブル(または安価なケーブル)のピンの接触不良でも違いを生む可能性があります。実際、Ask Ubuntuで私がここで読んだ問題の大部分は、モニターからのEDIDデータの欠落/誤りに関するもので、ケーブル(kvmスイッチ/接続アダプター)のせいです。あなたはすぐにそれに気づくことができますxrandr --verbose
出力ます。
モニターからのEDIDデータが不完全/部分的に間違っているため(メーカーの間違い)、ドライバーがいくつかのモードを制限している場合も多くありxorg.conf
ます。nvidia
ため例では、モニターからEDIDを無視できます)
上級ユーザーやヘルプを提供しているユーザーのために読むことをお勧めします。
通知:
ソリューションを提供する古いドキュメントや投稿を読むときは注意してください。より良いのは、使用中の特定のドライブのドキュメントを探すことです。
- 投稿日、最終編集日、またはソフトウェアバージョンを確認します。
modeset
、DRI
またはfb
(フレームバッファー)ドライバータイプ。(ただ、私は専門家ではないことに注意してください)。
- Xorgは自動設定に向けて多くのことを行っているため
xorg.conf
、デフォルトでは作成されません。ユーザーが作成したとしても、すべてのセクションを作成するのではなく、必要なもののみをオーバーライドする必要があります。構成はその場で行われます。
これらのxrandr / Xエラーのダミーの理解
息子(xrandr
)は、父親ができることを知らないか、購入することに同意するようです(すべてのドライバー機能)。したがって、次のシナリオのいずれかが発生します。
- 高比率:息子→(:)受け入れる)ママ→(:)受け入れる)お父さん、みんな幸せ!
- 低比率:息子→(:|受け入れる)ママ→(XD拒否)パパ、人生は時々難しい!
- まれなケース:Son→(X / reject)Mom -x-(:| neutral)dad、time for plan B!
そのため、XorgまたはDriverがxrandrリクエストを処理または拒否できないため、これらのエラーが発生します。
- 現在のXorg設定
- ドライバー機能
- グラフィックアダプター機能
- EDIDから取得したモニター機能
- そのうちの1つのバグ
xrandr
汎用グラフィックのデバッグ情報を収集しています!
どうして?ここでxrandr
&解決に関連する多くの質問を見ましたにが、完全なスタック設定に関する多くの情報が欠落しています。考慮セットには、最後に失敗したコマンドのみが記載されています。さらに、類似点を検索し、関連する問題をリンクできるように、質問にすべての出力を含めることをお勧めします。
EDIDデータが見つからない場合は、次から始めます。
- モニターはどのように物理的に接続されていますか、つまりKVMが使用されていますか?すべての接続アダプターex。HDMI to VGA?
- 別のケーブルを試しましたか?
- モニターのブランド/モデルとは何ですか?
ここにいくつかの有用なコマンドのリスト
背景情報
sudo dmidecode -s system-product-name
lsb_release -sd
Xorg -version
xrandr -v
sudo lshw -c display
基本情報
xrandr --verbose
cat /etx/X11/xorg.conf
more /var/log/Xorg.0.log
デバッグコマンドとオプション
sudo apt-get install edid-read
ls /sys/class/drm/*/edid | xargs -i{} sh -c "echo {}; parse-edid < {}"
xrandr --verbose ...
xtrace xrandr --verbose ...
#no need, only to compare between releases for changes, the default driver parameters
sudo sh -c "ls /sys/module/<driver-module-from-lshw>/parameters/ | xargs -L1 -i{} sh -c 'echo -n {} \" \" ; cat /sys/module/<driver-module-from-lshw>/parameters/{}'"
# additional desktop environment setting, for general cases, gnome/unity
cat ~/.config/monitors.xml
cat /etc/gnome-settings-daemon/xrandr/monitors.xml
gsettings list-recursively org.gnome.settings-daemon.plugins.xrandr
高度なデバッグオプション
追加Option "ModeDebug" "true"
するSection "Device"
ためにxorg.conf
、詳細については、以下のnvidiaのデバッグを参照してください。
nvidiaグラフィックスの追加デバッグ情報!
cat /proc/driver/nvidia/version
正確なバージョン
nvidiaデバッグ情報をアクティブにする /var/log/Xorg.0.log
gksu nvidia-settings
# go to X configuration then export, copy only device section
sudo mkdir /etc/X11/xorg.conf.d/
sudo vim /etc/X11/xorg.conf.d/90_my_nvidia_hacks.conf
# paste the device section
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "NVS 3100M"
Option "ModeDebug" "true"
EndSection
# add to it this line `Option "ModeDebug" "true"`
の完全なドキュメントでfile:///usr/share/doc/nvidia-*/html/
、同じ実行バージョンを探し、利用可能なオプションとデフォルト設定に多くの変更があります。
Intelドライバーを使用したデバッグテストケース
ここに私がそれを再現できるケースがあり、それはのバグのようですxrandr
。xtrace
&からXorg.0.log
、フレームバッファーが最初の組み合わせでサイズ変更されないことが明らかです。
#Seems a bug in xrandr
#Xorg error when changing to bigger resolution without changing a previously defined scale.
#-----------
#system info
$ xrandr --version
xrandr program version 1.4.3
Server reports RandR version 1.4
$ sudo sh -c "lsb_release -dc;echo; uname -a; Xorg -version;echo; lshw -C display"
Description: Ubuntu 15.10
Codename: wily
Linux BlueSkies 4.2.0-25-generic #30-Ubuntu SMP Mon Jan 18 12:31:50 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
X.Org X Server 1.17.2
Release Date: 2015-06-16
X Protocol Version 11, Revision 0
Build Operating System: Linux 3.13.0-68-generic x86_64 Ubuntu
Current Operating System: Linux BlueSkies 4.2.0-25-generic #30-Ubuntu SMP Mon Jan 18 12:31:50 UTC 2016 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.2.0-25-generic root=UUID=9f0530d5-e0eb-43fa-b99b-000fa742cf10 ro persistent quiet splash vt.handoff=7
Build Date: 12 November 2015 05:33:29PM
xorg-server 2:1.17.2-1ubuntu9.1 (For technical support please see http://www.ubuntu.com/support)
Current version of pixman: 0.32.6
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
*-display
description: VGA compatible controller
product: 3rd Gen Core processor Graphics Controller
vendor: Intel Corporation
physical id: 2
bus info: pci@0000:00:02.0
version: 09
width: 64 bits
clock: 33MHz
capabilities: msi pm vga_controller bus_master cap_list rom
configuration: driver=i915 latency=0
resources: irq:26 memory:f6400000-f67fffff memory:e0000000-efffffff ioport:f000(size=64)
$ sudo sh -c "ls /sys/module/i915/parameters/ | xargs -L1 -i{} sh -c 'echo -n {} \" \" ; cat /sys/module/i915/parameters/{}'"
disable_display N
disable_power_well 1
disable_vtd_wa N
edp_vswing 0
enable_cmd_parser 1
enable_execlists 0
enable_fbc -1
enable_hangcheck Y
enable_ips 1
enable_ppgtt 1
enable_psr 0
enable_rc6 3
fastboot N
invert_brightness 0
load_detect_test N
lvds_channel_mode 0
lvds_downclock 0
lvds_use_ssc -1
mmio_debug 0
modeset -1
nuclear_pageflip N
panel_ignore_lid 1
prefault_disable N
preliminary_hw_support 0
reset Y
semaphores -1
use_mmio_flip 0
vbt_sdvo_panel_type -1
verbose_state_checks Y
$ modinfo i915
filename: /lib/modules/4.2.0-25-generic/kernel/drivers/gpu/drm/i915/i915.ko
license: GPL and additional rights
description: Intel Graphics
author: Intel Corporation
author: Tungsten Graphics, Inc.
firmware: i915/skl_dmc_ver1.bin
srcversion: BB05D6968744E69AEA30DC2
...
depends: drm_kms_helper,drm,video,i2c-algo-bit
intree: Y
vermagic: 4.2.0-25-generic SMP mod_unload modversions
$ xrandr
Screen 0: minimum 8 x 8, current 1726 x 768, maximum 32767 x 32767
LVDS1 connected primary 1366x768+0+0 (normal left inverted right x axis y axis) 309mm x 173mm
1366x768 60.07*+ 40.02
1360x768 59.80 59.96
1280x720 60.00
1024x768 60.00
1024x576 60.00
960x540 60.00
800x600 60.32 56.25
864x486 60.00
640x480 59.94
720x405 60.00
680x384 60.00
640x360 60.00
DP1 disconnected (normal left inverted right x axis y axis)
DP2 disconnected (normal left inverted right x axis y axis)
DP3 disconnected (normal left inverted right x axis y axis)
HDMI1 disconnected (normal left inverted right x axis y axis)
HDMI2 disconnected (normal left inverted right x axis y axis)
HDMI3 disconnected (normal left inverted right x axis y axis)
VGA1 connected 360x200+1366+0 (normal left inverted right x axis y axis) 410mm x 230mm
1366x768 59.79 +
1280x1024 60.02
1280x720 60.00
1024x768 60.00
800x600 60.32
640x480 60.00
720x400 70.08*
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
Other info not collected
$ grep intel /var/log/Xorg.0.log
#-------------------------
#case reproducing & debug
## 1st combination different mode & same scale
$ xrandr --output VGA1 --mode 720x400 --right-of LVDS1 --scale 0.5x0.5
$ xtrace xrandr --verbose --output VGA1 --mode 1366x768 --right-of LVDS1 --scale 0.5x0.5
000:<:0030: 28: RANDR-Request(140,21): SetCrtcConfig crtc=0x00000040 timestamp=0x00000000 config timestamp=0x00010a4d x=0 y=0 mode=0x00000000 rr=Rotate_0 outputs=;
000:>:0030:32: Reply to SetCrtcConfig: status=Success(0x00)
screen 0: 1726x768 453x202 mm 96.57dpi
crtc 1: 720x400 70.08 +1366+0 "VGA1"
000:<:0031: 20: RANDR-Request(140,7): SetScreenSize window=0x000000d9 width=1726 height=768 width[mm]=453 height[mm]=202
000:<:0032: 32: RANDR-Request(140,21): SetCrtcConfig crtc=0x00000040 timestamp=0x00000000 config timestamp=0x00010a4d x=1366 y=0 mode=0x000000fc rr=Rotate_0 outputs=0x0000004a;
000:>:0032:32: Reply to SetCrtcConfig: status=Success(0x00)
screen 0: 2049x768 538x202 mm 96.57dpi
crtc 1: 1366x768 59.79 +1366+0 "VGA1"
000:<:002f: 4: Request(36): GrabServer
000:<:0030: 20: RANDR-Request(140,7): SetScreenSize window=0x000000d9 width=2049 height=768 width[mm]=538 height[mm]=202
000:<:0031: 32: RANDR-Request(140,21): SetCrtcConfig crtc=0x00000040 timestamp=0x00000000 config timestamp=0x00010a4d x=1366 y=0 mode=0x000000f8 rr=Rotate_0 outputs=0x0000004a;
000:>:0030:Error 8=Match: major=140, minor=7, bad=217
000:>:0031:32: Reply to SetCrtcConfig: status=Success(0x00)
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 140 (RANDR)
Minor opcode of failed request: 7 (RRSetScreenSize)
Serial number of failed request: 48
Current serial number in output stream: 49
## 2nd combination same mode & different scale
$ xtrace xrandr --verbose --output VGA1 --mode 1366x768 --right-of LVDS1 --scale 1x1
$ xtrace xrandr --verbose --output VGA1 --mode 1366x768 --right-of LVDS1 --scale 0.5x0.5
screen 0: 2732x768 718x202 mm 96.57dpi
crtc 1: 1366x768 59.79 +1366+0 "VGA1"
000:<:002f: 4: Request(36): GrabServer
000:<:0030: 20: RANDR-Request(140,7): SetScreenSize window=0x000000d9 width=2732 height=768 width[mm]=718 height[mm]=202
000:<:0031: 56: RANDR-Request(140,26): SetCrtcTransform crtc=0x00000040 transform={matrix=1.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.000000;}; filter name='nearest' filter params=;
000:<:0032: 32: RANDR-Request(140,21): SetCrtcConfig crtc=0x00000040 timestamp=0x00000000 config timestamp=0x00010a4d x=1366 y=0 mode=0x000000f8 rr=Rotate_0 outputs=0x0000004a;
000:>:0032:32: Reply to SetCrtcConfig: status=Success(0x00)
000:<:0030: 28: RANDR-Request(140,21): SetCrtcConfig crtc=0x00000040 timestamp=0x00000000 config timestamp=0x00010a4d x=0 y=0 mode=0x00000000 rr=Rotate_0 outputs=;
000:>:0030:32: Reply to SetCrtcConfig: status=Success(0x00)
screen 0: 2049x768 538x202 mm 96.57dpi
crtc 1: 1366x768 59.79 +1366+0 "VGA1"
000:<:0031: 20: RANDR-Request(140,7): SetScreenSize window=0x000000d9 width=2049 height=768 width[mm]=538 height[mm]=202
000:<:0032: 56: RANDR-Request(140,26): SetCrtcTransform crtc=0x00000040 transform={matrix=0.500000,0.000000,0.000000,0.000000,0.500000,0.000000,0.000000,0.000000,1.000000;}; filter name='bilinear' filter params=;
000:<:0033: 32: RANDR-Request(140,21): SetCrtcConfig crtc=0x00000040 timestamp=0x00000000 config timestamp=0x00010a4d x=1366 y=0 mode=0x000000f8 rr=Rotate_0 outputs=0x0000004a;
000:>:0033:32: Reply to SetCrtcConfig: status=Success(0x00)
$ tail /var/log/Xorg.0.log
##1st
[ 6644.557] (II) intel(0): resizing framebuffer to 1726x768
[ 6644.560] (II) intel(0): switch to mode 720x400@70.1 on VGA1 using pipe 1, position (1366, 0), rotation normal, reflection none
[ 6660.882] (II) intel(0): switch to mode 1366x768@59.8 on VGA1 using pipe 1, position (1366, 0), rotation normal, reflection none
##2nd
[ 6804.638] (II) intel(0): resizing framebuffer to 2732x768
[ 6804.647] (II) intel(0): switch to mode 1366x768@59.8 on VGA1 using pipe 1, position (1366, 0), rotation normal, reflection none
[ 6817.753] (II) intel(0): resizing framebuffer to 2049x768
[ 6817.757] (II) intel(0): switch to mode 1366x768@59.8 on VGA1 using pipe 1, position (1366, 0), rotation normal, reflection none
他の質問からの注目すべき事例
xrandr: Failed to get size of gamma for output default
ドライバーのサポートまたはドライブがロードされていない問題。これはnomodeset
古いグラフィックで有名です。xrandr
KMSなしではうまく機能しません。指標:
sudo lshw -c display
空にすること*-display UNCLAIMED
もできますdriver=
。
maximum 1920 x 1080
バッファサイズが最小とまったく画面サイズで、ほとんどのグラフィックスは今ある maximum 8192 x 8192
、maximum 16384 x 16384
あるいは32Kx32K。
- 接続の通常名はありません
default
!
- OpenGLソフトウェアレンダラーを使用します(
glxinfo
例:を確認)Gallium3D/llvmpipe
。
同様の問題を再現するには
ゲストの追加/モジュール(vboxグラフィックドライバーを含む)をインストールせずにUbuntu仮想ボックスを作成します。それは非常に遅くなり、実機でも同じことが起こります。
X Error of failed request: BadMatch (invalid parameter attributes)
(RRQueryOutputProperty)
で誤ったプロパティ名を使用したxrandr --output .. --set <name> <value>
場合、ユーザーはまずを使用して使用可能なプロパティを確認する必要がありますxrandr --prop
。ここで解決された同じケース:
ノートパソコンの明るさを変更できません
使用可能なプロパティは使用するドライバとアダプタに依存するため、xrandrにプロパティが宣言されていないため、以前のドライバの問題の結果である可能性があります。
同様の問題を再現するには
xrandr --output <connection-name> --set whatever 0
X Error of failed request: BadMatch (invalid parameter attributes)
(RRAddOutputMode)
私の現在の理論は、時間があるときに後でテストすることを計画しています。ここにそれを文書化した。忘れないでください、そして他の人がフィードバックをするかもしれません。
xrandr .. --addmode
EDID検証により、ドライバーが拒否したときに発生するエラー。「ModeDebug」を有効にすると、nvidiaがいくつかのモードを削除することに気付きました。どちらか:
- モニターからのEDIDデータは完全ではありません
- EDIDの処理が堅牢ではないドライバー
- 生成されたモードエントリは、EDIDで宣言されたモニタ範囲にありません
(1&2)ソリューションは、Hsync / Vsync / PixelClockのカスタムオーバーライドまたは完全なローカルEDIDファイルです。一部のドライバーはEDIDを無視できます。
(3)解決策は、異なるモードのエントリを試すことです。違いに注意してください
$ cvt 1280 800 60
# 1280x800 59.81 Hz (CVT 1.02MA) hsync: 49.70 kHz; pclk: 83.50 MHz
Modeline "1280x800_60.00" 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync
$ gtf 1280 800 60
# 1280x800 @ 60.00 Hz (GTF) hsync: 49.68 kHz; pclk: 83.46 MHz
Modeline "1280x800_60.00" 83.46 1280 1344 1480 1680 800 801 804 828 -HSync +Vsync
# reduce mode only for flat monitors
$ cvt -r 1280 800 60
# 1280x800 59.91 Hz (CVT 1.02MA-R) hsync: 49.31 kHz; pclk: 71.00 MHz
Modeline "1280x800R" 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync
たとえば、vsyncを少し低く変更するだけで解決する場合があり1280 800 59.80
ます。