長城A081上網本螢幕變形

長城A081上網本螢幕變形

我剛來這裡。請讓我容易理解。

最近,我在我的 GREAT WALL A081 上網本中使用帶有 Ultra ISO 和 magic iso 虛擬管理器的 Wubi 在 Windows 中安裝了 Ubuntu 10.04 上網本版本。我嘗試過使用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

當我輸入後按 Enter 時,xrandr --output......它給出錯誤“crct 0 失敗”

答案1

最後透過工作 3 個 ni8s...我想我們已經做到了...謝謝大家...特別是 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 啟動選項」啟動 - nomodeset&xforcevesa
  2. 使用xorg.conf帶有設備名稱的自訂文件,例如fbdevvesa

我最近在下面回答了一個類似的問題 - 我可以建議您看看這個並嘗試其中描述的一些可能的解決方案。


一旦您找到了獲得穩定圖形的正確“設備”,下一個任務就是定義最適合您的筆記型電腦的解析度。

首先,我會檢查是否存在最合適的解析度 - 從選單中選擇“系統 - 首選項 - 監視器”。

看看是否有您可以使用的解決方案。

如果沒有,您將需要定義最適合您的筆記型電腦的解析度。

幸運的是,這個網站上有很多類似的問題 - 我在下面選擇了一個您應該嘗試的問題。

答案背後的原則是一樣的——

  • 運行xrandr -q查看預設解析度。
  • cvt以適當的分辨率運行(例如cvt 800 540
  • 運行xrandr以測試此解析度 - 檢查您的監視器小程序
  • 首選項選單。
  • 將成功的解析加入 .xprofile

  1. 不支援的視訊晶片組 - 如何強制使用低圖形模式?
  2. 未知顯示器,英特爾驅動程序,想要將 VGA 解析度設定為寬螢幕電視

相關內容