我刚刚安装了ubuntu 13.04 x64,我的分辨率是800x600,没有其他选择。我尝试安装nvidia驱动程序313,但仍然没有执行任何操作。我尝试这样做 http://www.howopensource.com/2012/10/install-nvidia-geforce-driver-in-ubuntu-12-10-12-04-using-ppa/
还是没有运气,谢谢
我刚刚安装了ubuntu 13.04 x64,我的分辨率是800x600,没有其他选择。我尝试安装nvidia驱动程序313,但仍然没有执行任何操作。我尝试这样做 http://www.howopensource.com/2012/10/install-nvidia-geforce-driver-in-ubuntu-12-10-12-04-using-ppa/
还是没有运气,谢谢
Answers:
使用cvt
。这是1280x1024分辨率的示例。注意,第三个参数(频率)是可选的。如果您的用户手册指定了刷新率频率,则可以将其用作的输入cvt
,或者可以将其保留为空白以简化操作。
$ cvt 1280 1024 60
输出看起来像这样。
# 1280x1024 60.03 Hz (CVT) hsync: 63.81 kHz; pclk: 109.25 MHz
Modeline "1280x1024_60" 109.25 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync
xrandr
模式行使用Modeline
from 的输出cvt
为创建新模式xrandr
。
$ xrandr --newmode "1280x1024_60" 109.25 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync
在运行以下命令后,请注意VGA1
当前连接的显示器,在本示例中,因此我们将在下面的步骤4中使用它。
$ xrandr
Screen 0: minimum 320 x 200, current 1280 x 1024, maximum 32767 x 32767
VGA1 connected 1280x1024+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1280x1024_60.00 59.9 +
1024x768 60.0
800x600 60.3 56.2
848x480 60.0
640x480 59.9
1280x1024_60 60.0*
DVI1 disconnected (normal left inverted right x axis y axis)
TV1 disconnected (normal left inverted right x axis y axis)
xrandr
模式使用步骤3中的显示名称。使用步骤2中的模式名称,但不要使用引号。
$ xrandr --addmode VGA1 1280x1024_60
指定显示名称和模式名称
$ xrandr --output VGA1 --mode 1280x1024_60
如果监视器具有“自动调整”按钮,请按它以自动居中并缩放输出。否则,请使用显示器上的手动按钮执行此操作。
xorg.conf
文件如果您喜欢分辨率设置,则可以通过在xorg.conf
文件中指定此信息来使它们永久化。
将modeline
步骤1中的放入该"Monitor"
部分。您可以用"My Monitor"
显示器的描述性名称代替,只要在本"Screen"
节中使用相同的名称即可。
请注意,该"Device"
部分用于指定您的图形卡/芯片和所使用的驱动程序。Identifier
可以是您选择的任何名称,只要您在本"Screen"
节中使用相同的名称即可。但是您必须在线使用图形卡/芯片的正确驱动程序名称Driver
。您可以$ lshw -c video | grep configuration
用来获取图形驱动程序名称。
尽管我尚未对此进行测试,但是有可能排除该"Device"
部分,只要您还删除了Device
该"Screen"
部分中的相应行即可。
$ sudo gedit /etc/X11/xorg.conf
在文件中输入信息,保存并退出。这是一个使用上面的1280x1024 modeline和intel图形驱动程序的示例。
Section "Monitor"
Identifier "My Monitor"
Modeline "1280x1024_60" 109.25 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync
Option "PreferredMode" "1280x1024_60"
EndSection
Section "Device"
Identifier "Intel"
Driver "intel"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "My Monitor"
Device "Intel"
Defaultdepth 24
SubSection "Display"
Modes "1280x1024_60"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
EndSection
如果出现问题,您可以启动进入恢复模式并进行编辑或删除/etc/X11/xorg.conf
。
最后,您可以查看Ubuntu Wiki Resolution以获取更多信息。
xorg
没有帮助,
/etc/X11/xorg.conf
。
sudo nvidia-xconfig
以生成xorg.conf文件。