nvidia 双显示器(一台 4k HiDPI,一台带转换器的 VGA)上的分辨率和缩放问题

nvidia 双显示器(一台 4k HiDPI,一台带转换器的 VGA)上的分辨率和缩放问题

我正在尝试 Kubuntu 18.10,我有一个 nvidia GTX 1060(驱动程序 418)、一个 LG 27" 4k 显示器 (27UD58-B) 和一个较旧的 HP 22" 1680x1050 显示器 (HPw2207),带有 VGA 线和 VGA-> DP 转换器。

我的问题如下:
1) 我无法让带有转换器的 VGA 屏幕使用高于 1280*1024 的分辨率

2) 我想使用屏幕缩放,因为 4k 显示屏上的所有内容都非常小。如果可能的话,我希望仅在高 dpi 显示器上进行缩放。

当前设置:

我使用的是 Nvidia 驱动程序 418.56。

$ nvidia-smi
Mon Apr 15 15:07:47 2019       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 418.56       Driver Version: 418.56       CUDA Version: 10.1     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce GTX 106...  Off  | 00000000:23:00.0  On |                  N/A |
| 10%   64C    P0    25W / 120W |    739MiB /  6076MiB |      3%      Default |
+-------------------------------+----------------------+----------------------+

+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|    0       958      G   /usr/lib/xorg/Xorg                           386MiB |
|    0      1413      G   /usr/bin/kwin_x11                            192MiB |
|    0      1432      G   /usr/bin/krunner                               1MiB |
|    0      1434      G   /usr/bin/plasmashell                         111MiB |
|    0      1509      G   /usr/bin/latte-dock                           29MiB |
|    0      9387      G   /usr/lib/firefox/firefox                       1MiB |
+-----------------------------------------------------------------------------+

并且正常的更高分辨率不可用:

$ xrandr
Screen 0: minimum 8 x 8, current 4864 x 2160, maximum 32767 x 32767
DVI-D-0 disconnected (normal left inverted right x axis y axis)
HDMI-0 disconnected (normal left inverted right x axis y axis)
DP-0 connected primary 3840x2160+0+0 (normal left inverted right x axis y axis) 600mm x 340mm
   3840x2160     60.00*+  30.00  
   2560x1440     59.95  
   1920x1080     60.00    59.94  
   1600x900      60.00  
   1280x1024     60.02  
   1280x800      59.81  
   1280x720      60.00    59.94  
   1152x864      59.96  
   1024x768      60.00  
   800x600       60.32  
   720x480       59.94  
   640x480       59.94    59.93  
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 connected 1024x1280+3840+832 left (normal left inverted right x axis y axis) 376mm x 301mm
   1280x1024     60.02*+
   1280x960      60.00  
   1152x864      75.00  
   1024x768      85.00    75.03    70.07    60.00  
   800x600       85.06    75.00    72.19  
   640x480       85.01    59.94  
DP-5 disconnected (normal left inverted right x axis y axis)

第一个问题:修复分辨率 我尝试使用 xrandr“addmode”,但收到 BadMatch 错误。对于 nvidia 显卡来说,这显然是正常现象。

$ cvt 1680 1050 60
# 1680x1050 59.95 Hz (CVT 1.76MA) hsync: 65.29 kHz; pclk: 146.25 MHz
Modeline "1680x1050_60.00"  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync
$ xrandr --newmode  "1680x1050_60.00"  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync

$ xrandr --addmode DP-4 1680x1050_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

我的 /etc/X11/xorg.conf 文件已由 nvidia 使用 sudo nvidia-xconfig 生成:

$ sudo nvidia-xconfig

Using X configuration file: "/etc/X11/xorg.conf".
Backed up file '/etc/X11/xorg.conf' as '/etc/X11/xorg.conf.backup'
New X configuration file written to '/etc/X11/xorg.conf'

xorg.conf 只包含一个监视器,这正常吗?我尝试在 Monitor0 下添加“Modeline”行,但它没有改变任何内容。

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 418.56


Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

第二个问题:缩放

我采取了两个步骤来允许 HiDPI 屏幕以更易读的尺寸显示文本和 GUI:

1)系统设置-字体-强制字体DPI 144(而不是96) 2)系统设置-显示和监视器-比例显示1.5(而不是1)。

我希望这些设置仅适用于 4k 显示器,这可能吗?

答案1

我找到了一个解决方法:我将显示器直接连接到具有 VGA 的旧塔,并使用导出 edid

sudo apt install read-edid
sudo get-edid -m 0 > edid.bin

然后我删除了机器上旧的 xorg.conf 并创建了一个新的 xorg.conf,并在其中强制显示端口 4 上的显示器的 edid:

sudo rm /etc/X11/xorg.conf 
nvidia-xconfig --custom-edid="GPU-0.DP-4:/home/MYNAME/edid.bin"

Ta-da,现在可以使用更高的分辨率。当我查看 xorg.conf 文件时,我看到以下行已添加到“Screen”部分:

   Option         "CustomEDID" "GPU-0.DP-4:/home/MYNAME/Downloads/edid.bin"
以下是我最终针对高 dpi 显示器和标准 dpi 显示器的缩放所做的操作:

好吧,mais là tout est trop gros sur le 22” .. il faut que je rescale de 1.4 dans la Direction inverse。就 3840 + 1.4 * 1680 = 6192 像素而言,这与帧缓冲区无关。套间,在 écrans avec 的位置 --pos,où le 0x0 est le coin haut-gauche de l'écran。 https://askubuntu.com/questions/393400/is-it-possible-to-have- Different-dpi-configurations-for-two- different-screens xrandr --输出 DP-0 --scale 1x1 --pos 0x0 --fb 6192x2160 xrandr --输出 DP-4 --scale 1.4x1.4 --pos 3840x690

相关内容