现在只能通过 VGA 显卡启动

现在只能通过 VGA 显卡启动

今天早上启动后,我只能在启动时配置最大分辨率 1024x768。我最终重新安装了 ubuntu 11.10,但仍然被限制为此最大分辨率。显示被检测为unknown

我的显卡是 Intel 2500K 芯片(Intel HD 3000 显卡),显示器是 Dell 2209W。重新安装的系统已更新至最新软件包(没有更多更新可应用)。

一切都很好,直到昨晚我更新了存储库。

除此之外,我的系统没有什么独特之处。

slioch@slioch-desktop:~$ xrandr
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 8192 x 8192
VGA1 connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   1024x768       60.0* 
   800x600        60.3     56.2  
   848x480        60.0  
   640x480        59.9  
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
HDMI2 disconnected (normal left inverted right x axis y axis)
HDMI3 disconnected (normal left inverted right x axis y axis)
DP2 disconnected (normal left inverted right x axis y axis)

答案1

这里也有同样的问题。

~$ lspci
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)

以此方式修复。首先计算 vesa cvt:

~$ cvt 1280 720 
# 1280x720 59.86 Hz (CVT 0.92M9) hsync: 44.77 kHz; pclk: 74.50 MHz
Modeline "1280x720_60.00"   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync

然后设置 xrandr:

~$ xrandr --newmode 1280x720_60.00 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync
~$ xrandr --addmode VGA1 1280x720_60.00

相关内容