我是 Ubuntu 新手。我安装了 Ubuntu 12.04,但一直无法为我的 LCD 显示器设置正确的分辨率。
LCD 的原始分辨率为 1920x1080
以下是输出xrandr
:
$ xrandr
Screen 0: minimum 320 x 200, current 1280 x 720, maximum 4096 x 4096
LVDS1 connected 1280x720+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1280x720 60.0*+
800x600 60.3 56.2
640x480 59.9
VGA1 disconnected (normal left inverted right x axis y axis)
然后我创建新的模式行:
$ cvt 1920 1080 60
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
:
$ xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
但由于某种原因,新模式是为 VGA(VGA1)输出而不是 LCD 输出(LVDS1)创建的:
$ xrandr
Screen 0: minimum 320 x 200, current 1280 x 720, maximum 4096 x 4096
LVDS1 connected 1280x720+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1280x720 60.0*+
800x600 60.3 56.2
640x480 59.9
VGA1 disconnected (normal left inverted right x axis y axis)
1920x1080_60.00 (0xbc) 173.0MHz <---------- ????!!!!!!
h: width 1920 start 2048 end 2248 total 2576 skew 0 clock 67.2KHz
v: height 1080 start 1083 end 1088 total 1120 clock 60.0Hz
因此,如果我尝试将模式添加到 LVDS1,则会收到错误:
$ xrandr --addmode LVDS1 "1920x1080_60.00"
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 149 (RANDR)
Minor opcode of failed request: 18 (RRAddOutputMode)
Serial number of failed request: 25
Current serial number in output stream: 26
将该新模式添加到 VGA1 可以正常工作,但我不使用该 VGA1 输出。
答案1
您可以使用 xrandr 向 Ubuntu 12.04 添加缺失的分辨率。
首先,使用 cvt 创建一个新的解析模式。
sudo cvt 1920 1080 60
部分输出应类似于此:“Modeline“1920x1080_60.00”173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync”(不带引号)。
接下来,声明一个新的解析模式。
sudo xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
接下来,找出您的视频设备的名称。
sudo xrandr -q
我的设备名为“Virtual1”(运行虚拟机)。一旦您知道了设备的名称,您最终就可以将新的分辨率模式添加到设备/系统。
sudo xrandr --addmode Virtual1 1920x1080_60.00
请参阅此处“添加未检测到的分辨率”部分中的更多信息:https://wiki.ubuntu.com/X/Config/Resolution/#Adding_undetected_resolutions
答案2
此链接帮助过我。
简而言之:像您一样运行 xrandr 和 cvt,然后创建以下文件:
/usr/share/X11/xorg.conf.d/10-monitor.conf
在文件中,根据您的规格更改 < > 中的参数:
Section "Monitor"
Identifier "Monitor0"
<INSERT MODELINE HERE>
EndSection
Section "Screen"
Identifier "Screen0"
Device "<INSERT DEVICE HERE>"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "<INSERT MODENAME HERE>"
EndSubSection
EndSection