ubuntu 16.04 kann dem xrandr asus VS247H-P, nvidia nicht den 1080p-Modus hinzufügen

1136
Austin

Ich habe dies bereits in Ubuntu-Foren nachgefragt, konnte aber keine Lösung finden, siehe: https://ubuntuforums.org/showthread.php?t=2341827

Mein 1080p-Monitor steckt bei 1360 x 768 Auflösung in Ubuntu 16.04 fest. Ich habe versucht, einen neuen Modus zu xrandr hinzuzufügen, aber mit diesem Fehler enden:

X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 140 (RANDR) Minor opcode of failed request: 18 (RRAddOutputMode) Serial number of failed request: 45 Current serial number in output stream: 46 

SPECS

Monitor: Asus VS247H-P

Kabel: amazon basics hdmi

Grafikkarte: Gigabyte Windforce GTX970

Treiber: nvidia-367 (habe es mit mehreren nvidia-Treibern versucht)

Hier ist die vollständige Methode, die ich versuche.

xrandr Screen 0: minimum 8 x 8, current 1360 x 768, maximum 16384 x 16384 DVI-I-0 disconnected (normal left inverted right x axis y axis) DVI-I-1 disconnected (normal left inverted right x axis y axis) HDMI-0 connected primary 1360x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm 1024x768 60.00 + 1360x768 59.96* 59.80  1152x864 60.00  800x600 72.19 60.32 56.25  680x384 59.96 59.80  640x480 59.94  512x384 60.00  400x300 72.19  320x240 60.05  DP-0 disconnected (normal left inverted right x axis y axis) DP-1 disconnected (normal left inverted right x axis y axis) DP-2 disconnected (normal left inverted right x axis y axis) DP-3 disconnected (normal left inverted right x axis y axis) DP-4 disconnected (normal left inverted right x axis y axis) DP-5 disconnected (normal left inverted right x axis y axis)    cvt 1920 1080# 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync    xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync  xrandr --addmode HDMI-0 "1920x1080_60.00"X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 140 (RANDR) Minor opcode of failed request: 18 (RRAddOutputMode) Serial number of failed request: 45 Current serial number in output stream: 46 

Ich bin relativ neu bei Ubuntu, daher bin ich mir nicht sicher, welche Parameter ungültig sind. Wenn ich das zum Laufen bekomme, wie würde ich es dann durch den Startvorgang machen lassen?

4
Dies ist eine zufällige Aufnahme ins Dunkle - versuchen Sie jedoch, den Modus mit 'gtf' mit niedrigerer Frequenz zu generieren. Versuchen Sie es mit 59 oder 55 Hz. Ich erinnere mich, dass jemand mit dem gleichen Problem geholfen hat - es war jedoch ein intellektueller Treiber. Marek Rost vor 7 Jahren 0
http://arachnoid.com/modelines/ bietet ein etwas anderes Modell: Modeline "1920x1080_60.00" 172.80 1920 2040 2248 2576 1080 1081 1184 -HSync + Vsync glallen vor 7 Jahren 0
Wenn die Antwort nicht funktioniert, müssen Sie möglicherweise `xorg.conf` bearbeiten. Siehe Beispiel unter dem obigen Link. Siehe auch http://askubuntu.com/a/334404/73056 glallen vor 7 Jahren 0

1 Antwort auf die Frage

0
glallen

Versuchen:

xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync 

oder:

xrandr --newmode "1920x1080_60.00" 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -hsync +vsync 

gefolgt von:

xrandr --addmode HDMI-0 1920x1080_60.00 xrandr --output HDMI-0 --mode 1920x1080_60.00 

Der Syntaxunterschied sind die Anführungszeichen für den Modus für --addmodeund --output.

Ansonsten - siehe verwandte Antwort hier: https://askubuntu.com/a/334404/73056 und bearbeiten Sie xorg.conf, um Modlines hinzuzufügen.