screen resolution issue

Asked by Tharindu

i can't change screen resolution to 1024*768 in ubuntu 9.10. it's have only 800*600 & 640*480 only but i can use 1024*768 in windows XP

Question information

Language:
English Edit question
Status:
Answered
For:
Ubuntu xorg Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
actionparsnip (andrew-woodhead666) said :
#1

What XP does or doesn't do is completely irrelevant.

Can you give the output of:

sudo lshw -C display

Thanks.

Revision history for this message
Tharindu (tmgallage) said :
#2

tharindu@tharindu-desktop:~$ sudo lshw -C display
[sudo] password for tharindu:
  *-display
       description: VGA compatible controller
       product: 82G33/G31 Express Integrated Graphics Controller
       vendor: Intel Corporation
       physical id: 2
       bus info: pci@0000:00:02.0
       version: 10
       width: 32 bits
       clock: 33MHz
       capabilities: msi pm bus_master cap_list rom
       configuration: driver=i915 latency=0
       resources: irq:26 memory:fea80000-feafffff ioport:dc00(size=8) memory:d0000000-dfffffff(prefetchable) memory:fe900000-fe9fffff
tharindu@tharindu-desktop:~$

Revision history for this message
Tharindu (tmgallage) said :
#3

harindu@tharindu-desktop:~$ sudo lshw -C display
[sudo] password for tharindu:
  *-display
       description: VGA compatible controller
       product: 82G33/G31 Express Integrated Graphics Controller
       vendor: Intel Corporation
       physical id: 2
       bus info: pci@0000:00:02.0
       version: 10
       width: 32 bits
       clock: 33MHz
       capabilities: msi pm bus_master cap_list rom
       configuration: driver=i915 latency=0
       resources: irq:26 memory:fea80000-feafffff ioport:dc00(size=8) memory:d0000000-dfffffff(prefetchable) memory:fe900000-fe9fffff
tharindu@tharindu-desktop:~$

Revision history for this message
Arnaudus (a-lerouzic) said :
#4

Hi,

You may want to have a look at the following forum threads: http://ubuntuforums.org/showthread.php?t=732401

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#5

try:

gksudo gedit /etc/X11/xorg.conf

add this code:

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

Section "Monitor"
    Identifier "Configured Monitor"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
    SubSection "Display"
        Depth 24
    EndSubSection
EndSection

Save the new file and close gedit then reboot. This should then be ok, if you get no display then boot to root recovery root console and rename xorg.conf

You can also try this code:

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

Section "Monitor"
    Identifier "Configured Monitor"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
    SubSection "Display"
        Depth 24
 Modes "1024x768"
    EndSubSection
EndSection

There is only the extra line difference, you can change 1024x768 to whatever you prefer (make sure your display can output the resolution).

Can you help with this problem?

Provide an answer of your own, or ask Tharindu for more information if necessary.

To post a message you must log in.