Lubuntu 14.04(Sis)的低分辨率

我的lubuntu的分辨率是640×480,我无法改变它。 屏幕定义中没有其他选项。

这是我(可怕的)图形卡:

01:00.0 VGA compatible controller: Silicon Integrated Systems [SiS] 771/671 PCIE VGA Display Adapter (rev 10) 

这是我运行xrandr命令时得到的:

 xrandr: Failed to get size of gamma for output default Screen 0: minimum 640 x 480, current 640 x 480, maximum 640 x 480 default connected primary 640x480+0+0 0mm x 0mm 640x480 73.0* 800x600_60.00 (0x198) 38.2MHz h: width 800 start 832 end 912 total 1024 skew 0 clock 37.4KHz v: height 600 start 603 end 607 total 624 clock 59.9Hz 2048x1536_60.00 (0x1da) 267.2MHz h: width 2048 start 2208 end 2424 total 2800 skew 0 clock 95.4KHz v: height 1536 start 1539 end 1543 total 1592 clock 60.0Hz 1024x728_60.00 (0x1dc) 63.5MHz h: width 1024 start 1072 end 1176 total 1328 skew 0 clock 47.8KHz v: height 768 start 771 end 775 total 798 clock 59.9Hz 1024x768_60.00 (0x1dd) 63.5MHz h: width 1024 start 1072 end 1176 total 1328 skew 0 clock 47.8KHz v: height 768 start 771 end 775 total 798 clock 59.9Hz 

所以,我希望在这台电脑上拥有1024×768的分辨率,此刻我无能为力。 我是Linux的新手,因此我需要一些帮助。 我尝试按照我在某些主题中看到的一些步骤但没有任何反应。

是的,它不是有史以来最好的显卡,但它可以在Lubuntu 14.04中完成相同的1024×768,如果你强迫机器使用vesa驱动程序。

使用以下内容创建文件/usr/share/X11/xorg.conf.d/use-vesa.conf:

 Section "Device" Identifier "Configured Video Device" Driver "vesa" EndSection 

就这样。 重新启动,你应该有你的决议。

该文件可以使用任何文本编辑器创建 – 如果您对终端不满意,您可能希望使用像leafpad这样的图形。 但是,您需要是root用户才能对需要该文件的位置进行写访问。

所以,打开一个终端(CTRL + Alt + t)并输入“sudo leafpad”。 您需要在那里输入密码。 我认为你这样做是默认用户,所以sudo应该工作,编辑器窗口将打开。

然后,您可以将所需文本复制并粘贴到文件中,并将其保存到给定位置(/usr/share/X11/xorg.conf.d/)。 名称“use-vesa.conf”是任意的,您也可以将其命名为“whatever.conf”,只要.conf位在文件名中,并且文件保存在正确的位置,它就可以工作。

请检查它是否适合您。

创建并使用我的问题中显示的/etc/X11/xorg.conf文件: 无法在我的“SiS M760GX”显卡上获得1280×800的分辨率

上述解决方案允许分辨率为1280×768,1024×768,800×600或640×480 ,从而产生比仅使用下面的xorg.conf文件更好的结果:

 Section "Device" Identifier "Configured Video Device" Driver "vesa" EndSection