这是一个近乎完美的解决方案。给了我一个比640x480更好的分辨率,但还是不太正确!
我有一个带有"SiS M760GX“视频卡的宏碁Aspire 5000 (lspci -v返回Silicon Integrated Systems [SiS] 661/741/760 PCI/AGP or 662/761Gx PCIE VGA Display Adapter (prog-if 00 [VGA controller])),使用下面显示的这个xorg.conf文件,我现在可以获得1280x768、1024x768、800x600或640x480的分辨率,而不是仅仅640x480,因为分辨率太低了。但是,我的屏幕的本机分辨率是1280x800,所以看起来还是有点差。你知道我怎么能让1280X800上班吗?
注意,我运行的是Xubuntu16.04.3 64位。宏碁Aspire 5000是在大约2005年。
这是我的/etc/X11/xorg.conf文件(最初由哈维尔-ejsf 员额#10!-https://ubuntuforums.org/showthread.php?t=2215422发布):
Section "Device"
Identifier "Generic Video Card"
VendorName "Silicon Integrated Systems [SiS]"
BoardName "771/671 PCIE VGA Display Adapter"
Busid "PCI:1:0:0"
Driver "vesa"
Screen 0
Option "UseFBDev" "true"
Option "DPMS"
Option "ShadowFB"
Option "MaxXFBMem"
VideoRam 262016
Option "RenderAccel" "true"
Option "AllowGLXWithComposite" "true"
Option "backingstore" "true"
Option "AddARGBGLXVisuals" "True"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
Vendorname "Generic LCD Display"
Modelname "LCD Panel 1280x800"
HorizSync 20-107
VertRefresh 50-185
modeline "800x600@56" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
modeline "800x600@60" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
modeline "1280x768@60" 80.14 1280 1344 1480 1680 768 769 772 795 -hsync +vsync
modeline "1280x720@60" 74.48 1280 1336 1472 1664 720 721 724 746 -hsync +vsync
modeline "1280x800@60" 83.46 1280 1344 1480 1680 800 801 804 828 -hsync +vsync
Gamma 1.0
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
Defaultdepth 24
SubSection "Display"
Depth 24
Virtual 1280 768
Modes "1280x768@60" "1280x720@60" "800x600@60" "1280x800@60" "800x600@56"
EndSubSection
EndSection
Section "Module"
Load "dri"
Load "dbe" # Double-Buffering Extension
Load "v4l" # Video for Linux
Load "extmod"
Load "type1"
Load "freetype"
Load "glx" # 3D layer
Load "GLcore"
Load "i2c"
Load "bitmap"
Load "ddc"
Load "int10"
Load "vbe"
Load "speedo"
Load "record"
EndSection
Section "DRI"
Mode 0666
EndSection我已经尝试过了:
如果我尝试将“Virtual1280768”更改为“Virtual1280800”,它所做的就是使我的屏幕垂直延伸到显示器的边缘之外,因此,通过将鼠标移动到顶部或底部,它将上下平移屏幕以查看额外的32个像素。这不是我想要的。
发布于 2017-09-01 19:44:19
在现代Ubuntu版本上无法获得1280x800分辨率。
在Ubuntu12.04上是可能的。现在,X.org不支持SiS过时的模式设置方法。
您只能使用VESA模式。
https://askubuntu.com/questions/952001
复制相似问题