无法设置外接显示器的正确分辨率

无法设置外接显示器的正确分辨率

我在华硕 X550L 笔记本电脑上使用 ubuntu 15.04。以下是我的 lspci

$ lspci
00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 09)
00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 09)
00:04.0 Signal processing controller: Intel Corporation Device 0a03 (rev 09)
00:14.0 USB controller: Intel Corporation 8 Series USB xHCI HC (rev 04)
00:16.0 Communication controller: Intel Corporation 8 Series HECI #0 (rev 04)
00:1b.0 Audio device: Intel Corporation 8 Series HD Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 1 (rev e4)
00:1c.2 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 3 (rev e4)
00:1c.3 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 4 (rev e4)
00:1c.4 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 5 (rev e4)
00:1d.0 USB controller: Intel Corporation 8 Series USB EHCI #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation 8 Series LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 8 Series SMBus Controller (rev 04)
00:1f.6 Signal processing controller: Intel Corporation 8 Series Thermal (rev 04)
02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. Device 5287 (rev 01)
02:00.1 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 12)
03:00.0 Network controller: Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter (rev 01)
04:00.0 3D controller: NVIDIA Corporation GF117M [GeForce 610M/710M/820M / GT 620M/625M/630M/720M] (rev a1)

我有两台显示器。

  1. 戴尔 24 英寸显示器,原始分辨率为 1920X1080,我可以毫无问题地将其连接到我的笔记本电脑,并且开箱即可使用。
  2. Acer X193HQ 的原始分辨率为 1366X768,这给我带来了问题。

我尝试在 Windows 7 中连接这台 Acer 显示器,没有任何问题,并且以原始分辨率 1366X768 运行。

但是当我尝试在 ubuntu 中连接它时,我只得到 2 个分辨率选项 1. 1024X768 2. 800X600

我无法将 Acer 显示器设置为原始分辨率,但我的 Dell 显示器运行正常。

以下是我的 xrandr

$ xrandr
Screen 0: minimum 8 x 8, current 2390 x 768, maximum 32767 x 32767
eDP1 connected primary 1366x768+0+0 (normal left inverted right x axis y axis) 344mm x 193mm
   1366x768       60.0*+
   1360x768       59.8     60.0  
   1024x768       60.0  
   800x600        60.3     56.2  
   640x480        59.9  
DP1 connected 1024x768+1366+0 (normal left inverted right x axis y axis) 0mm x 0mm
   1024x768       60.0* 
   800x600        60.3     56.2  
HDMI1 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)

我正在使用 Nouveau 显示驱动程序。我尝试将其更改为 NVIDIA 二进制驱动程序版本 340.76,但登录时出现黑屏。

我还尝试使用以下命令为 DP1 添加其他分辨率

xrandr --newmode "1366x768_60.00"  85.86  1366 1440 1584 1800  768 769 772 795  -HSync +Vsync
xrandr --addmode DP1 1366x768_60.00

这些命令成功地在显示设置中添加了分辨率选项(尽管仅适用于会话),但是当我尝试设置它时,显示器再次恢复到 1024X768。

请提出建议。

答案1

您需要让xrandr命令在启动时运行。

不幸的是,很多人无法使命令永久存在,以便它们在启动时运行,但我会向您展示如何轻松地做到这一点:

  • xrandr.sh例如,创建一个 bash 脚本,并将 xrandr 命令放入其中。它应该看起来像这样

    /bin/bash #!/bin/bash
    xrandr --newmode “1920x1200_60.00” 193.16 1920 2048 2256 2592 1200 1201 1204 1242 -HSync +Vsync
    xrandr --addmode VGA1 1920x1200_60.00
    xrandr --输出 VGA1 --模式 1920x1200_60.00

  • 使用以下命令使脚本可执行chmod +x xrandr.sh

  • 在仪表板中搜索“启动应用程序”,运行它,并将脚本添加为启动应用程序。

每次您登录帐户时,这些命令都会运行。

相关内容