Como posso definir minha taxa de atualização? erro de correspondência

2

Eu tenho um monitor externo conectado ao meu laptop. Está atualmente definido para 1920x1080p @ 60Hz. Eu quero que seja definido para 1920x1080p @ 75Hz. Eu usei essa taxa de atualização no Windows 8.1 por mais de um ano sem problemas. O monitor pode ser conectado via DisplayPort ou HDMI.

Kubuntu 17.10
Nvidia gtx 960m
Versão do driver da Nvidia: 384.98

Atualização 2018/09/26:

Ainda não está funcionando. Eu até fiz uma nova instalação.

Kubuntu 18,04
Driver Nvidia 390.48

Coisas que eu já experimentei

Formato:

página onde encontrei as instruções

comando
resultado

Alterando a taxa de atualização para um monitor específico

xrandr --output DP-3 --rate 75

Nada acontece.

xrandr --output DP-3 --mode 1920x1080 --rate 75

"nenhuma entrada / sinal detectado"

xrandr --output HDMI0 --mode 1920x1080 --rate 75

A tela treme / vibra para cima e para baixo.

Como posso definir a resolução do meu monitor?

cvt 1920 1080 75

# 1920x1080 74.91 Hz (CVT 2.07M9) hsync: 84.64 kHz; pclk: 220.75 MHz
Modeline "1920x1080_75.00"  220.75  1920 2064 2264 2608  1080 1083 1088 1130 -hsync +vsync

xrandr --query | grep connected

HDMI-0 disconnected (normal left inverted right x axis y axis)
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 connected primary 1920x1080+1920+0 (normal left inverted right x axis y axis) 527mm x 296mm
eDP-1-1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 344mm x 194mm

xrandr --addmode DP-3 "1920x1080_75.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:  50
  Current serial number in output stream:  51

link

sudo nano /etc/X11/xorg.conf

Nenhuma seção chamada 'monitor'

link

gtf 1920 1080 75

# 1920x1080 @ 75.00 Hz (GTF) hsync: 84.60 kHz; pclk: 220.64 MHz
  Modeline "1920x1080_75.00"  220.64  1920 2056 2264 2608  1080 1081 1084 1128  -HSync +Vsync

xrandr --newmode "1920x1080_75.00"  220.64  1920 2056 2264 2608  1080 1081 1084 1128  -HSync +Vsync

X Error of failed request:  BadName (named color or font does not exist)
  Major opcode of failed request:  140 (RANDR)
  Minor opcode of failed request:  16 (RRCreateMode)
  Serial number of failed request:  50
  Current serial number in output stream:  50

cvt -r 1920 1080 75

ERROR: Multiple of 60Hz refresh rate required for  reduced blanking.

link

xrandr --newmode "1920x1080-ok"  220.64  1920 2056 2264 2608  1080 1081 1084 1128  -HSync +Vsync

Funciona (acho).

xrandr --addmode DP-3 "1920x1080-ok"

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:  50                                                                              
  Current serial number in output stream:  51

xrandr --addmode DP-3 1920x1080-ok

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:  50                                                                              
  Current serial number in output stream:  51
    
por Borre 17.12.2017 / 15:24

0 respostas