如何设置并将分辨率限制为 640x480

如何设置并将分辨率限制为 640x480

我如何设置和限制 Ubuntu 12 中的分辨率为 640x480 xorg.conf 文件中的内容已经不多了,所以我猜这不再是执行此操作的地方?

我也无法使用 GUI 来执行此操作,因为它没有显示 640x480 选项。

在设置分辨率时,计算机连接到普通屏幕,但稍后它将连接到仅支持 640x480 且不会向计算机报告其支持的模式的屏幕。

我的 xorg.conf 中的唯一内容(默认情况下)是这样的:

Section "Device"
        Identifier      "Default Device"
        Option  "NoLogo"        "True"
EndSection

更新,回应卡米尔的回答:

我没有 gdm 文件夹,但我明白了
,但是如果我执行这些命令,我​​会得到以下结果

xrandr --newmode "640x480_60.00"   23.75  640 664 720 800  480 483 487 500 -hsync +vsync
xrandr: Failed to get size of gamma for output default
X Error of failed request:  BadName (named color or font does not exist)
Major opcode of failed request:  153 (RANDR)
Minor opcode of failed request:  16 (RRCreateMode)
Serial number of failed request:  19
Current serial number in output stream:  19
root@timothy-desktop:~# xrandr --addmode default 640x480_60.00
xrandr: Failed to get size of gamma for output default
root@timothy-desktop:~# xrandr --output default --mode 640x480
xrandr: Failed to get size of gamma for output default

请注意,在我的例子中,VGA1 是默认的。

答案1

要将分辨率设置为 640x480,请打开终端并输入:

   xrandr -s 640x480 

答案2

将默认分辨率设置为 640x480

  1. 打开终端Ctrl++AltT发出:

    cvt 640 480 
    
  2. 复制输出

  3. 打开配置文件:

    gksudo gedit /etc/gdm/Init/Default
    
  4. 搜索 :

    PATH="/usr/bin:$PATH"  
    OLD_IFS=$IFS
    
  5. 添加刚刚在步骤2中复制的输出,例如:

    xrandr --newmode "640x480_60.00"   23.75  640 664 720 800  480 483 487 500 -hsync +vsync
    xrandr --addmode VGA1 640x480_60.00
    xrandr --output VGA1 --mode 640×480
    
  6. 保存并重新启动。

相关内容