如何强制分辨率为 1024x768?

如何强制分辨率为 1024x768?

回到 ubuntu 9,支持的最大分辨率是 960x600,通过编辑 xorg.conf 我能够获得 1024x768 分辨率。我最近安装了 ubuntu 11.10...现在我在显示面板上可以获得的最大分辨率是 960x600...我尝试编辑 xorg,但没有 xorg,当我尝试创建一个时,访问被拒绝。

我对 Linux 命令还不熟悉,因此,如果能得到逐步的帮助我将非常感激。

我添加了/etc/X11/xorg.conf包含:

Section "Device"
    Identifier    "Configured Video Device"
EndSection

Section "Monitor"
    Identifier    "Configured Monitor"
    HorizSync       30.0-62.0
    VertRefresh     50.0-70.0
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Monitor        "Configured Monitor"
    Device        "Configured Video Device"
    DefaultDepth    24
    SubSection "Display"
        Depth    24
        Modes     "1024x768" "800x600"
    EndSubSection
EndSection 

答案1

  1. 在终端中输入以下命令:

    gksu gedit /etc/X11/xorg.conf
    
  2. 将以下选项复制并粘贴到该文件中:

    Section "Device"
        Identifier    "Configured Video Device"
    EndSection
    
    Section "Monitor"
        Identifier    "Configured Monitor"
        HorizSync       30.0-62.0
        VertRefresh     50.0-70.0
    EndSection
    
    Section "Screen"
        Identifier    "Default Screen"
        Monitor        "Configured Monitor"
        Device        "Configured Video Device"
        DefaultDepth    24
        SubSection "Display"
            Depth    24
            Modes     "1024x768" "800x600"
        EndSubSection
    EndSection 
    
  3. 保存您的编辑并重新启动(注销并重新登录或重新启动)。

享受。

答案2

这是我使用 xrandr 强制分辨率为 1280x1024 75hz 的解决方案...将以下内容放在 ~/.xprofile 中

#!/bin/bash
xrandr --newmode "1280x1024_75.00"  138.75  1280 1368 1504 1728  1024 1027 1034 1072 -hsync +vsync
xrandr --addmode VGA1 "1280x1024_75.00"
xrandr --output VGA1 --mode "1280x1024_75.00"

注意:VGA1 是您要调整的显示设备...您还可以使用 cvt 命令创建您可能需要的任何新模式行。我找到了参考 URI:https://wiki.ubuntu.com/X/Config/Resolution

答案3

您可以按照之前使用的方法操作,但如果您需要创建 xorg.conf,请按如下方式操作。从命令行(“终端”):

gksudo gedit /etc/X11/xorg.conf

将您的配置粘贴到那里并保存。现在文件应该存在,您应该能够像以前一样编辑它。

如果您在完成此步骤后需要更多帮助,请编辑您的问题,然后我们可以继续。:)

相关内容