LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Ubuntu (https://www.linuxquestions.org/questions/ubuntu-63/)
-   -   Screen Resoloution (https://www.linuxquestions.org/questions/ubuntu-63/screen-resoloution-425866/)

torger 03-17-2006 06:23 PM

Screen Resoloution
 
I have an inspiron 1100 notebook and want to increase the screen resoloution from 640 something to 1024 something. I have tried the screen resoloution changing tool and it has no option for 1024 something.

Simon Bridge 03-17-2006 06:53 PM

alter this in /etc/X11/xorg.conf - but make sure both the video-card and the monitor support the new resolution.

Code:

Section "Screen"
  SubSection "Display"
    Depth    "24"
    Modes    "1024x768" "800x600" "640x480"
  EndSubSection

... or something similar.

torger 03-17-2006 09:22 PM

I opened a window with admin abilities selected the file you said changed it restarted and nothing happened.

lixx 03-18-2006 08:01 PM

Are U using nVidia GPU on this laptop? Or ATi?
If nVidia (with installed nvidia graphical driver) then your /etc/X11/xorg.conf must be (or may be something similar):
-=-=-=-=-=-=-=-=-=-
...
Section "Module"
#Load "GLcore"
Load "i2c"
Load "bitmap"
Load "ddc"
#Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "type1"
Load "vbe"
EndSection
...
Section "Device"
Identifier "NVIDIA Corporation NV36 [GeForce FX 5700]"
Driver "nvidia"
BusID "PCI:1:0:0"
EndSection
...
Section "Screen"
SubSection "Display"
Depth "24"
Modes "1024x768" "800x600" "640x480"
EndSubSection
...
-=-=-=-=-=-=-=-=-=-

And also make sure U have correct VertRefresh and HorizSync in Section "Monitor".
P.S. Identifier and BusID in Section "Device" above is just for example -- U should use yours.

torger 03-18-2006 09:13 PM

I don't know what it is I think it's ATI though

mips13 03-24-2006 07:40 AM

sudo dpkg-reconfigure xserver-xorg

Simon Bridge 03-25-2006 04:27 AM

lspci and look for the card - this may help show you what it is.
ATI Radeon often need proprietary drivers, much like nVidia.
Well done mips13, I didn't think of reconfigure :) Aside: Have you had a look over at the "My LQ" menue on the right of this page? There is a handy "Edit Profile" thing that you can use to set your distro and location to be displayed under your name on the left.

torger 03-25-2006 08:01 AM

I'm using intel integrated graphics.

Simon Bridge 03-26-2006 09:25 PM

That dosn't look like lspci output...
sudo /sbin/lspci -v gives me:
Code:

01:00.0 VGA compatible controller: Silicon Integrated Systems [SiS] 65x/M650/740 PCI/AGP VGA Display Adapter (prog-if 00 [VGA])
        Subsystem: Silicon Integrated Systems [SiS] 65x/M650/740 PCI/AGP VGA Display Adapter
        Flags: 66Mhz, medium devsel, IRQ 9
        BIST result: 00
        Memory at e0000000 (32-bit, prefetchable) [size=128M]
        Memory at ec000000 (32-bit, non-prefetchable) [size=128K]
        I/O ports at c000 [size=128]
        Capabilities: [40] Power Management version 2
        Capabilities: [50] AGP version 2.0

... see what I mean? Basically, we need to know which "intel integrated graphics" you have. Is this it?
Code:

00:02.0 VGA compatible controller: Intel Corp. 82845G/GL [Brookdale-G] Chipset Integrated Graphics Device (rev 03)
If so, then this is an Intel(R) i830 Extreme Graphics chip model 82845G with hardware 3D support, 1024x768 is the maximum resolution supported. You need the intel drivers for 3D support. Have a look here: http://support.intel.com/support/gra.../CS-010512.htm

... of course, that's a guess.

torger 03-27-2006 10:31 AM

I tried sudo dpkg-reconfigure xserver-xorg and I configured it wrong and everything crashed. how can I revert to old settings?

Simon Bridge 03-28-2006 12:01 AM

This is why so much advise is about the command line :)

boot into text only (runlevel 3) and sudo dpkg etc all over again. Unless you also messed up your keyboard too!

You could boot into a live session, look for the xorg.conf file in you harddrive, then edit it directly for sensible values.

FliesLikeABrick 03-28-2006 05:01 PM

The cause of this problem is almost always the fact that the x.org file has the wrong horizontal and vertical sync/refresh rates for your display. If these lines are there, comment them out. If they're not there or that doesn't work, use google to track down the proper values.

If that doesn't work, gradually try increasing the top number of the range that is already there. If none of that works, post here again


All times are GMT -5. The time now is 02:00 AM.