长城 A081 上网本屏幕扭曲

长城 A081 上网本屏幕扭曲

我是新来的。请让我容易理解。

最近,我在 GREAT WALL A081 上网本中使用 Wubi 和 ultra ISO 以及 magic iso 虚拟管理器在 Windows 中安装了 Ubuntu 10.04 上网本版本......问题是,当我启动 Ubuntu 时,屏幕会扭曲和模糊。我尝试使用 failsafeX 进行调试模式。在 failsafeX 中,Ubuntu 启动时出现错误“未检测到屏幕、显卡和输入设备,您必须对其进行调试”

请帮我!

我的上网本规格如下:

Processor: Mobile VIA C7-M 1600MHz  
Cache: 128KB L2  
Chipset: VIA CN896NB  
RAM: 512MB  
Graphics Card: Integrated VIA S3G UniChrome Pro, 64MB  
Screen: 10.2 inches TFT WXGA (1024 × 600)  
Hard Drive: 120G  
Wireless: VIA Networking Technologies  
Networking: Realtek RTL8139 Family  
Battery: 2200mAh  
Dimensions: 249mm (L) x 178mm (W) x 38.5mm (H)  
Weight: 1221.5g (default)  
Operating system: WinXP  

我尝试了以下

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

Section "Monitor"
    Identifier  "Configured Monitor"
EndSection

Section "Screen"
    Identifier  "Default Screen"
    Monitor     "Configured Monitor"
    Device      "Default configured Device"
EndSection

(屏幕在 b4 时变得不稳定)

我的Xrandr -q

Screen 0: minimum 640 x 480, current 1280 x 720, maximum 1280 x 720
default connected 1280x720+0+0 0mm x 0mm
   1280x720        0.0* 
   1024x600        0.0  
   800x600        61.0  
   720x576         0.0  
   720x540         0.0  
   720x480         0.0  
   640x480        60.0  

我的cvt1024x600

# 1024x600 59.85 Hz (CVT) hsync: 37.35 kHz; pclk: 49.00 MHz
Modeline "1024x600_60.00"   49.00  1024 1072 1168 1312  600 603 613 624 -hsync +vsync

我尝试在 grub 中使用 nomodeset 并在 xorg.conf 中使用 openchrome,但结果还是一样 - 屏幕扭曲并出现数百条线。

xrandr的是

Screen 0: minimum 640 x 480, current 1280 x 720, maximum 1280 x 720
default connected 1280x720+0+0 0mm x 0mm
   1280x720        0.0* 
   1024x600        0.0  
   800x600        61.0  
   720x576         0.0  
   720x540         0.0  
   720x480         0.0  
   640x480        60.0  
   1024x600_60.00   59.9  
   1024x600_6O.OO   59.9  

命令是:

 xrandr --newmode  "1024x600_60.00"   49.00  1024 1072 1168 1312  600 603 613 624 -hsync +vsync

xrandr --addmode default 1024x600_60.00

xrandr --output default --mode 1024x600_60.00

当我输入后按下回车键时,xrandr --output......出现错误“crct 0 failed”

答案1

最后,通过工作 3 个 ni8....我想我们已经成功了.....谢谢大家..特别是 fossfreedom....

通过实验找到了问题的解决方案......呵呵,松了一口气,再次感谢您的帮助

Section "Monitor"
        Identifier  "Configured Monitor"
EndSection

Section "Screen"
        Identifier  "Default Screen"
        Monitor     "Configured Monitor"
        Device      "configured Video Device"
        SubSection "Display"
                Virtual 1024 600
        EndSubSection
EndSection

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

答案2

您的图形问题很可能是由于 VIA 图形芯片组在 Linux 中得不到很好的支持。

两个可能的建议:

  1. 使用一个或多个“grub 启动选项”启动 - nomodesetxforcevesa
  2. 使用xorg.conf具有设备名称的自定义文件,例如fbdevvesa

我最近回答了下面的一个类似的问题 - 我可以建议您看看这个问题并尝试其中描述的一些可能的解决方案。


一旦找到了正确的“设备”来获得稳定的图形,下一个任务就是定义最适合您的笔记本电脑的分辨率。

首先,我会检查是否已经有最合适的分辨率 - 从菜单中选择“系统 - 首选项 - 监视器”。

看看是否有可用的分辨率可供您使用。

如果没有,您将需要定义最适合您的笔记本电脑的分辨率。

幸运的是,这个网站上有很多类似的问题——我挑选了一个你应该在下面尝试的问题。

答案背后的原理是一样的——

  • 运行xrandr -q以查看默认分辨率。
  • cvt以适当的分辨率运行(例如cvt 800 540
  • 运行xrandr以测试此分辨率 - 检查监视器小程序中的
  • 偏好菜單。
  • 将成功解析添加到 .xprofile

  1. 不支持的视频芯片组 - 如何强制低图形模式?
  2. 未知显示器,英特尔驱动程序,想将 VGA 分辨率设置为宽屏电视

相关内容