How to add higher video resolution in Ubuntu 10.04 (UNR on EEE1101HA)

24,195

Solution 1

UBUNTU 10.10 is out .. and the ASUS 1101HA still won't display 1366x768 on the LCD. Time to wipe the UBUNTU partition, expand the WIN7 partitions and pass the machine to a windows user..

Solution 2

This is a bit problematic at the moment. 9.10 worked pretty well with the GMA500 Graphics but 10.04 doesn't yet. Relevant threads are:

Ubuntu Netbook Hardware Support and Hardware Support GMA500

Solution 3

Just use 'cvt' command to calculate the modeline of the desired resolution and refresh rate and feed that to 'xrandr --newmode ' then 'xrandr --addmode ' (I might have them backwords, but it will only work if you do it in the right order with xrandr, e.g. "newmode then addmode or addmode then newmode"). This method will work when the video driver does not support a resolution fully.

Share:
24,195
lexu
Author by

lexu

Updated on September 17, 2022

Comments

  • lexu
    lexu over 1 year

    UBUNTU 10.10 is out .. and the ASUS 1101HA still won't display 1366x768 on the LCD.
    Time to wipe the UBUNTU partition, expand the WIN7 partitions and pass the machine to a windows user..


    I picked up an ASUS EEE 1101HA with Windows 7 and installed UBUNTU 10.04 Netbook Remix (dual boot).

    Ubuntu runs fine, but it doesn't recognize that the notebook LCD is 1366x768 and thus only offers 1024x768 and 800x600 as monitor resolution.

    So .. how can I tell it about that higher resolution?

    (Have root pwd & vi, una-bash-ed to use both.. )

    UPDATE

    there is currently (early May 2010) no video-driver for the Intel GMA500 "Poulsbo"
    => no solution exists for now.

    UPDATE II xorg.conf, created with sudo Xorg -configure removed, too long, no feedback

    UPDATE III using cvt and xrandr as per adamgmetzler's suggestion (doesn't work)

    note that 1366 is not a multiple of 8, so cvt silently 'upgraded' to 1368

    lexu@eee1101:~$ cvt 1366 768 60
    # 1368x768 59.88 Hz (CVT) hsync: 47.79 kHz; pclk: 85.25 MHz
    Modeline "1368x768_60.00"   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync
    
    
    lexu@eee1101:~$ xrandr --newmode "1368x768_60.00"   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync
    
    lexu@eee1101:~$ xrandr --addmode "default" "1368x768_60.00"
    

    after doing this I can select the new resolution, but get an error message: could not set configuration for CRTC 262

    • Nathan Osman
      Nathan Osman almost 14 years
      I think you meant 10.04 :)
    • Nathan Osman
      Nathan Osman almost 14 years
      Can we see your x configuration file?
    • lexu
      lexu almost 14 years
      @George Edison: You are right .. edited! I'll gladly show my X configuration file .. but I can't seem to find it. I expected Xorg.conf in /etc/X11 .. but the configuration works differently than I seem to remember!
    • quack quixote
      quack quixote almost 14 years
      xorg.conf (/etc/X11/xorg.conf) is dynamically generated in Ubuntu 9.10 and later. if you create one manually, it will be used, otherwise everything's auto-detected and auto-configured.
    • T-Shamspour
      T-Shamspour about 13 years
      I posted an equivalent question askubuntu.com/questions/12578/…
  • lexu
    lexu almost 14 years
    Sigh, I'd read about problems with "Poulsbo" but didn't understand the relevance. Thanks for the pointer.