LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-29-2007, 01:10 AM   #1
andou
Member
 
Registered: Jul 2007
Location: Seoul, S. Korea
Distribution: Ubuntu 9.10
Posts: 44

Rep: Reputation: 15
UPLUS-Vision 30" Monitor *Resolution Issues


I can't get my monitor to display 2560x1600. It won't go higher than 1280x800.

I've been able to get it to do 2560x1600 in both Windows XP and Vista, but haven't had much luck with Linux.

I've tried a few things. Here's a link to my posting on the ubuntu forums. I got a couple of good replies there, but none that solved my problem(s).

Thanks for the help
 
Old 07-30-2007, 10:06 AM   #2
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
I note from your ubuntuforums post that to get your monitor to work with windows, you had to
Quote:
un-check "Hide resolutions that this monitor doesn't support" in display settings
I also note that your xorg.log says things like:
Code:
(WW) NVIDIA(0): Mode "1600x1200" is too large for UPV UP-M30W1 (DFP-0);
(WW) NVIDIA(0):     discarding.
So it rather looks as though the monitor is reporting that it cannot run high resolutions when in fact, it can.

So, firstly, I'd get rid of the modelines (as o_fortuna recommended in the ubuntuforums), they are not helpful when all you need to supply is your HorizSync and VertRefresh, X should work out all it needs from them.
Secondly, we need to find a way to make X ignore what the monitor is saying it is capable of, because it would appear to be lying!
Please post your xorg.conf in its entirety when you have removed the modelines and set your HorizSync and VertRefresh correctly.

Edit:
I have done a bit of googling...

"EDID" is the thing that reports your monitor's capabilities to X.
The nvidia driver has an option not to use EDID (because your monitor seems to be lying about its capabilities)

See here:
http://us.download.nvidia.com/XFree8...ppendix-d.html

and search for Option "UseEDID" "boolean"

Last edited by tredegar; 07-30-2007 at 10:54 AM.
 
Old 07-31-2007, 08:51 AM   #3
andou
Member
 
Registered: Jul 2007
Location: Seoul, S. Korea
Distribution: Ubuntu 9.10
Posts: 44

Original Poster
Rep: Reputation: 15
Hi tredegar

Thanks for the great reply. I'm still pretty new to this, so bear with me. I've got a lot of hope now.

Ok, I've been taking a look through the page you linked to, and trying some things out. When I tried nvidia-xconfig --virtual=2560x1600 It gave me the same resolution, but it only displayed about 1/4th of the screen at a time. So, I could scroll all over.

So, I tried nvidia-config --query-gpu-info and here's what I got:
Code:
[Number of GPUs: 1

GPU #0:
  Name      : GeForce 7900 GT/GTO
  PCI BusID : PCI:5:0:0

  Number of Display Devices: 1

  Display Device 0 (DFP-0):
     EDID Name             : UPV UP-M30W1
     Minimum HorizSync     : 30.000 kHz
     Maximum HorizSync     : 80.000 kHz
     Minimum VertRefresh   : 59 Hz
     Maximum VertRefresh   : 61 Hz
     Maximum PixelClock    : 268.500 MHz
     Maximum Width         : 2560 pixels
     Maximum Height        : 1600 pixels
     Preferred Width       : 1280 pixels
     Preferred Height      : 800 pixels
     Preferred VertRefresh : 60 Hz
     Physical Width        : 800 mm
     Physical Height       : 450 mm
Looking at that, it's pretty obvious to me that my monitor can go 2560x1600 @ 60Hz, but the 'preferred' Width and Height seem to be what's giving me problems.

Please pardon my newbness, but I'm not sure how I can set my HorizSync and VertRefresh or if I'm even supposed to.

I'm pretty sure now that I'm just missing something obvious, but I really don't know what that is.

Also, I tried with --no-use-edid and that gave me 'half-screen, tripple-split.'

So... is this a matter of changing the preferred Height and Width in the EDID? Or...?
 
Old 07-31-2007, 04:13 PM   #4
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
The NVIDIA link above says
Code:
The following driver options are supported by the NVIDIA X driver. 
They may be specified either in the Screen or Device sections of the X config file. 

...  [snip]  ...

Option "UseEDID" "boolean"

    By default, the NVIDIA X driver makes use of a display device's EDID, when available, 
during construction of its mode pool. The EDID is used as a source for possible modes, 
for valid frequency ranges, and for collecting data on the physical dimensions of the 
display device for computing the DPI (see Appendix Y, Dots Per Inch). However, if you wish to 
disable the driver's use of the EDID, you can set this option to False:

        Option "UseEDID" "FALSE"

    Note that, rather than globally disable all uses of the EDID, you can individually 
disable each particular use of the EDID; e.g.,

        Option "UseEDIDFreqs" "FALSE"
        Option "UseEDIDDpi" "FALSE"
        Option "ModeValidation" "NoEdidModes"

    Default: True (use EDID).
We don't want it to use EDID too much (because something is picking up the "Preferred" bits and locking you into that, refusing higher resolutions).

So, I suggest you:
- Make a backup of any xorg.conf that works, (you can call it xorg.conf.bad.but_works, then you can always copy it back if you end up with a conf file that dumps you at a terminal only)

Now, in your xorg.conf:
- Set your HorizSync and VertRefresh like this:
HorizSync 30-80
VertRefresh 59-61

because these are the values your monitor is reporting.

These lines are already in my xorg.conf file, like this, in my case:

Code:
Section "Monitor"
	Identifier	"Generic Monitor"
	Option		"DPMS"
	HorizSync	28-64
	VertRefresh	43-60
EndSection
If you do not have this section, add it, but yours may not be a "Generic Monitor", it may be something else. It doesn't really matter what you (or linux) calls it, so long as you are consistent with your references to it in your xorg.conf file.

- Get rid of all the modelines - they are not needed, because we have defined the sync rates, and as you'll see later, X will get your monitor's geometry from EDID, so X can work out the "modelines" itself. Mmmmmm Nice!

- In the Section Screen bit there's a DefaultDepth, this should be set at 24 for full colour.

- Then there are SubSection "Display" parts, relating to 1, 2, 4, .... 32 bits
We are only interested in the Depth 24 part because that is what we have set as our DefaultDepth above.
Give it a line like this:
Modes "2560x1600" "1280x800" "1280x768" "1200x800" "1024x768" "800x600" "640x480"
Because the DefaultDepth's default resolution is the first in this list, this should be 2560x1600.

Now we want the NVIDIA driver to ignore the stuff it gets from EDID (because we have supplied the information it needs, and we don't want it listening to any Preferred stuff, that is messing things up). [It is interesting that win has a similar bug - I expect not enough people are playing with these nice monitors yet].

So find the bit that says Section "Device", there'll be stuff about your nvidia card identifier, driver (which should be nvidia) etc. Add this bit (you should copy & paste):

Code:
# We have already supplied the frequencies
     Option "UseEDIDFreqs" "FALSE"
# We might as well let the monitor report its geometry (800mm x 450mm)
     Option "UseEDIDDpi" "TRUE"
# We do NOT want any of this "preferred" stuff, as it then 
# refuses to use higher resolutions so..
     Option "ModeValidation" "NoEdidModes"
Save your new xorg.conf and then restart X (<CTRL><ALT><BACKSPACE> - but I expect you have discovered that by now )and see what happens.

If you have difficulties, PLEASE post your xorg.conf as I asked you previously (with the above modifications, and no modelines -they are generally a waste of space, but are only very sometimes useful) as it is giving me a headache trying to imagine what it looks like.
The errors from your xorg.log would also be useful.
And while you are at it, please update your LQ profile so it reflects the Distro you are using. Your location is also quite useful to know (Well there are timezones to consider).
 
Old 07-31-2007, 07:37 PM   #5
andou
Member
 
Registered: Jul 2007
Location: Seoul, S. Korea
Distribution: Ubuntu 9.10
Posts: 44

Original Poster
Rep: Reputation: 15
Quote:
[It is interesting that win has a similar bug - I expect not enough people are playing with these nice monitors yet].
Yes. But, Vista defaulted to 2560x1600.

Ok... I've given that a try.

Here's my xorg.conf(Monitor / Device):

Code:
Section "Monitor"
    Identifier     "UP-M30W1"
    Option         "DPMS"
    HorizSync      30-80
    VertRefresh    59-61
EndSection

Section "Device"
    Identifier     "NVIDIA Corporation NVIDIA Default Card"
    Driver         "nvidia"
    Option "UseEDIDFreqs" "FALSE"
    Option "UseEDIDDpi" "TRUE"
EndSection

Section "Screen"
    Identifier     "Default Screen"
    Device         "NVIDIA Corporation NVIDIA Default Card"
    Monitor        "UP-M30W1"
Here's the Resolutions:
Code:
   Device         "NVIDIA Corporation NVIDIA Default Card"
    Monitor        "UP-M30W1"
    DefaultDepth    24
    Option         "UseEdid" "True"
    Option         "NoLogo" "True"
    SubSection     "Display"
        Virtual     1280 800
        Depth       1
        Modes      "2560x1600" "1280x800" "1280x768" "1200x800" "1024x768" "800$
    EndSubSection
    SubSection     "Display"
        Virtual     1280 800
        Depth       4
        Modes      "1280x800"
    EndSubSection
    SubSection     "Display"
        Virtual     1280 800
        Depth       8
        Modes      "1280x800"
Still no option for "2560x1600." I'll update my profile now. Thanks for all your help so far
 
Old 08-01-2007, 03:47 AM   #6
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
You are missing an important option (see my post above), and I think quotes are needed:
Quote:
Code:
Section "Monitor"
    Identifier     "UP-M30W1"
    Option         "DPMS"
    HorizSync      "30-80"
    VertRefresh    "59-61"
EndSection

Section "Device"
    Identifier     "NVIDIA Corporation NVIDIA Default Card"
    Driver         "nvidia"
    Option "UseEDIDFreqs" "FALSE"
    Option "UseEDIDDpi" "TRUE"
    Option "ModeValidation" "NoEdidModes"
EndSection

Section "Screen"
    Identifier     "Default Screen"
    Device         "NVIDIA Corporation NVIDIA Default Card"
    Monitor        "UP-M30W1"
And the next bit isn't right either. You haven't defined 2560x1600 for your default depth, and you are still telling it to use EDID :
Quote:
Code:
Device         "NVIDIA Corporation NVIDIA Default Card"
    Monitor        "UP-M30W1"
    DefaultDepth    24
#   Option         "UseEdid" "True" Comment out this line
    Option         "NoLogo" "True"
    SubSection     "Display"
        Virtual     1280 800
        Depth       1
        Modes      "2560x1600" "1280x800" "1280x768" "1200x800" "1024x768" "800$
    EndSubSection
    SubSection     "Display"
        Virtual     1280 800
        Depth       4
        Modes      "1280x800"
    EndSubSection
    SubSection     "Display"
        Virtual     1280 800
        Depth       8
        Modes      "1280x800"
So, to reduce further confusion, please make appropriate edits, try again, and if it still fails, post ALL of your xorg.conf and the X.log errors.
 
Old 08-01-2007, 04:52 AM   #7
andou
Member
 
Registered: Jul 2007
Location: Seoul, S. Korea
Distribution: Ubuntu 9.10
Posts: 44

Original Poster
Rep: Reputation: 15
Thanks for the patience... and the color-coded guide

Here's the first half of my Xorg.0.log:

Code:
X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: Linux 2.6.15.7 i686
Current Operating System: Linux andrew 2.6.17-12-generic #2 SMP Mon Jul 16 19:37:5$
Build Date: 07 July 2006
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Wed Aug  1 18:29:00 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "UP-M30W1"
(**) |   |-->Device "NVIDIA Corporation NVIDIA Default Card"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(**) |-->Input Device "stylus"
(**) |-->Input Device "cursor"
(**) |-->Input Device "eraser"
(WW) The directory "/usr/share/X11/fonts/misc" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/cyrillic" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/100dpi/" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/75dpi/" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/Type1" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/100dpi" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/75dpi" does not exist.
        Entry deleted from font path.
(WW) `fonts.dir' not found (or not valid) in "/var/lib/defoma/x-ttcidfont-conf.d/d$
        Entry deleted from font path.
        (Run 'mkfontdir' on "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType").
(**) FontPath set to:
        /usr/share/fonts/X11/misc,
        /usr/share/fonts/X11/misc/,
        /usr/share/fonts/X11/TTF/,
        /usr/share/fonts/X11/OTF,
        /usr/share/fonts/X11/Type1/,
        /usr/share/fonts/X11/CID/,
        /usr/share/fonts/X11/100dpi/,
        /usr/share/fonts/X11/75dpi/
(==) RgbPath set to "/usr/share/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(**) Extension "Composite" is enabled
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Module ABI versions:
        X.Org ANSI C Emulation: 0.3
        X.Org Video Driver: 1.0
        X.Org XInput driver : 0.6
        X.Org Server Extension : 0.3
        X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org Video Driver, version 1.0
(++) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,005e card 0000,0000 rev a3 class 05,80,00 hdr 00
(II) PCI: 00:01:0: chip 10de,0050 card 10de,cb84 rev a3 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,0052 card 10de,cb84 rev a2 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,005a card 10de,cb84 rev a2 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,005b card 10de,cb84 rev a3 class 0c,03,20 hdr 80
(II) PCI: 00:04:0: chip 10de,0059 card 10de,cb84 rev a2 class 04,01,00 hdr 00
(II) PCI: 00:06:0: chip 10de,0053 card 10de,cb84 rev a2 class 01,01,8a hdr 00
(II) PCI: 00:07:0: chip 10de,0054 card 10de,cb84 rev a3 class 01,01,85 hdr 00
(II) PCI: 00:08:0: chip 10de,0055 card 10de,cb84 rev a3 class 01,01,85 hdr 00
(II) PCI: 00:09:0: chip 10de,005c card 0000,0000 rev a2 class 06,04,01 hdr 01
(II) PCI: 00:0a:0: chip 10de,0057 card 10de,cb84 rev a3 class 06,80,00 hdr 00
(II) PCI: 00:0b:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0c:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0d:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0e:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 01:09:0: chip 1106,3044 card 15bd,1006 rev 80 class 0c,00,10 hdr 00
(II) PCI: 01:0a:0: chip 11ab,4320 card 15bd,100a rev 13 class 02,00,00 hdr 00
(II) PCI: 05:00:0: chip 10de,0291 card 1682,2211 rev a1 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:9:0), (0,1,1), BCTRL: 0x0204 (VGA_EN is cleared)
(II) Bus 1 I/O range:
        [0] -1  0       0x0000a000 - 0x0000a0ff (0x100) IX[B]
        [1] -1  0       0x0000a400 - 0x0000a4ff (0x100) IX[B]
        [2] -1  0       0x0000a800 - 0x0000a8ff (0x100) IX[B]
        [3] -1  0       0x0000ac00 - 0x0000acff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
        [0] -1  0       0xfde00000 - 0xfdefffff (0x100000) MX[B]
(II) Bus 1 prefetchable memory range:
        [0] -1  0       0xfdf00000 - 0xfdffffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:11:0), (0,2,2), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 2 I/O range:
        [0] -1  0       0x00009000 - 0x000090ff (0x100) IX[B]
        [1] -1  0       0x00009400 - 0x000094ff (0x100) IX[B]
        [2] -1  0       0x00009800 - 0x000098ff (0x100) IX[B]
        [3] -1  0       0x00009c00 - 0x00009cff (0x100) IX[B]
 
Old 08-01-2007, 04:54 AM   #8
andou
Member
 
Registered: Jul 2007
Location: Seoul, S. Korea
Distribution: Ubuntu 9.10
Posts: 44

Original Poster
Rep: Reputation: 15
Here's the next half of my Xorg.0.log:
Code:
(II) Bus 2 non-prefetchable memory range:
        [0] -1  0       0xfdd00000 - 0xfddfffff (0x100000) MX[B]
(II) Bus 2 prefetchable memory range:
        [0] -1  0       0xfdc00000 - 0xfdcfffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:12:0), (0,3,3), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 3 I/O range:
[0] -1  0       0x00008000 - 0x000080ff (0x100) IX[B]
        [1] -1  0       0x00008400 - 0x000084ff (0x100) IX[B]
        [2] -1  0       0x00008800 - 0x000088ff (0x100) IX[B]
        [3] -1  0       0x00008c00 - 0x00008cff (0x100) IX[B]
(II) Bus 3 non-prefetchable memory range:
        [0] -1  0       0xfdb00000 - 0xfdbfffff (0x100000) MX[B]
(II) Bus 3 prefetchable memory range:
        [0] -1  0       0xfda00000 - 0xfdafffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 4: bridge is at (0:13:0), (0,4,4), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 4 I/O range:
        [0] -1  0       0x00007000 - 0x000070ff (0x100) IX[B]
        [1] -1  0       0x00007400 - 0x000074ff (0x100) IX[B]
        [2] -1  0       0x00007800 - 0x000078ff (0x100) IX[B]
        [3] -1  0       0x00007c00 - 0x00007cff (0x100) IX[B]
(II) Bus 4 non-prefetchable memory range:
        [0] -1  0       0xfd900000 - 0xfd9fffff (0x100000) MX[B]
(II) Bus 4 prefetchable memory range:
        [0] -1  0       0xfd800000 - 0xfd8fffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 5: bridge is at (0:14:0), (0,5,5), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 5 I/O range:
        [0] -1  0       0x00006000 - 0x000060ff (0x100) IX[B]
        [1] -1  0       0x00006400 - 0x000064ff (0x100) IX[B]
        [2] -1  0       0x00006800 - 0x000068ff (0x100) IX[B]
        [3] -1  0       0x00006c00 - 0x00006cff (0x100) IX[B]
(II) Bus 5 non-prefetchable memory range:
        [0] -1  0       0xfa000000 - 0xfcffffff (0x3000000) MX[B]
(II) Bus 5 prefetchable memory range:
        [0] -1  0       0xd0000000 - 0xdfffffff (0x10000000) MX[B]
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:24:0), (0,0,5), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
        [0] -1  0       0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
        [0] -1  0       0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
        [0] -1  0       0x00000000 - 0xffffffff (0x0) MX[B]
(--) PCI:*(5:0:0) nVidia Corporation unknown chipset (0x0291) rev 161, Mem @ 0xfa0$
(II) Addressable bus resource ranges are
        [0] -1  0       0x00000000 - 0xffffffff (0x0) MX[B]
        [1] -1  0       0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
        [0] -1  0       0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[B]
        [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1  0       0x0000ffff - 0x0000ffff (0x1) IX[B]
        [5] -1  0       0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
        [0] -1  0       0xfdef8000 - 0xfdefbfff (0x4000) MX[B]
        [1] -1  0       0xfdeff000 - 0xfdeff7ff (0x800) MX[B]
        [2] -1  0       0xfe02a000 - 0xfe02afff (0x1000) MX[B]
        [3] -1  0       0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
        [4] -1  0       0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
        [5] -1  0       0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
        [6] -1  0       0xfeb00000 - 0xfeb000ff (0x100) MX[B]
        [7] -1  0       0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
        [8] -1  0       0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
        [9] -1  0       0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
        [10] -1 0       0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
        [11] -1 0       0x0000a800 - 0x0000a8ff (0x100) IX[B]
[12] -1 0       0x0000ac00 - 0x0000ac7f (0x80) IX[B]
        [13] -1 0       0x0000bc00 - 0x0000bc07 (0x8) IX[B]
        [14] -1 0       0x0000c000 - 0x0000c00f (0x10) IX[B]
        [15] -1 0       0x00000b60 - 0x00000b63 (0x4) IX[B]
        [16] -1 0       0x00000960 - 0x00000967 (0x8) IX[B]
        [17] -1 0       0x00000be0 - 0x00000be3 (0x4) IX[B]
        [18] -1 0       0x000009e0 - 0x000009e7 (0x8) IX[B]
        [19] -1 0       0x0000d400 - 0x0000d40f (0x10) IX[B]
        [20] -1 0       0x00000b70 - 0x00000b73 (0x4) IX[B]
        [21] -1 0       0x00000970 - 0x00000977 (0x8) IX[B]
        [22] -1 0       0x00000bf0 - 0x00000bf3 (0x4) IX[B]
        [23] -1 0       0x000009f0 - 0x000009f7 (0x8) IX[B]
        [24] -1 0       0x0000e800 - 0x0000e80f (0x10) IX[B]
        [25] -1 0       0x0000ec00 - 0x0000ecff (0x100) IX[B]
        [26] -1 0       0x0000f000 - 0x0000f0ff (0x100) IX[B]
        [27] -1 0       0x00001c40 - 0x00001c7f (0x40) IX[B]
        [28] -1 0       0x00001c00 - 0x00001c3f (0x40) IX[B]
        [29] -1 0       0x0000fc00 - 0x0000fc1f (0x20) IX[B]
        [30] -1 0       0x00006c00 - 0x00006c7f (0x80) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
        [0] -1  0       0xfdef8000 - 0xfdefbfff (0x4000) MX[B]
        [1] -1  0       0xfdeff000 - 0xfdeff7ff (0x800) MX[B]
        [2] -1  0       0xfe02a000 - 0xfe02afff (0x1000) MX[B]
        [3] -1  0       0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
        [4] -1  0       0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
        [5] -1  0       0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
        [6] -1  0       0xfeb00000 - 0xfeb000ff (0x100) MX[B]
        [7] -1  0       0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
        [8] -1  0       0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
        [9] -1  0       0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
        [10] -1 0       0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
[11] -1 0       0x0000a800 - 0x0000a8ff (0x100) IX[B]
        [12] -1 0       0x0000ac00 - 0x0000ac7f (0x80) IX[B]
        [13] -1 0       0x0000bc00 - 0x0000bc07 (0x8) IX[B]
        [14] -1 0       0x0000c000 - 0x0000c00f (0x10) IX[B]
        [15] -1 0       0x00000b60 - 0x00000b63 (0x4) IX[B]
        [16] -1 0       0x00000960 - 0x00000967 (0x8) IX[B]
        [17] -1 0       0x00000be0 - 0x00000be3 (0x4) IX[B]
        [18] -1 0       0x000009e0 - 0x000009e7 (0x8) IX[B]
        [19] -1 0       0x0000d400 - 0x0000d40f (0x10) IX[B]
        [20] -1 0       0x00000b70 - 0x00000b73 (0x4) IX[B]
        [21] -1 0       0x00000970 - 0x00000977 (0x8) IX[B]
        [22] -1 0       0x00000bf0 - 0x00000bf3 (0x4) IX[B]
        [23] -1 0       0x000009f0 - 0x000009f7 (0x8) IX[B]
        [24] -1 0       0x0000e800 - 0x0000e80f (0x10) IX[B]
        [25] -1 0       0x0000ec00 - 0x0000ecff (0x100) IX[B]
        [26] -1 0       0x0000f000 - 0x0000f0ff (0x100) IX[B]
        [27] -1 0       0x00001c40 - 0x00001c7f (0x40) IX[B]
        [28] -1 0       0x00001c00 - 0x00001c3f (0x40) IX[B]
        [29] -1 0       0x0000fc00 - 0x0000fc1f (0x20) IX[B]
        [30] -1 0       0x00006c00 - 0x00006c7f (0x80) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
        [0] -1  0       0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[B]
        [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1  0       0x0000ffff - 0x0000ffff (0x1) IX[B]
        [5] -1  0       0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
        [0] -1  0       0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1  0       0xfdef8000 - 0xfdefbfff (0x4000) MX[B]
        [5] -1  0       0xfdeff000 - 0xfdeff7ff (0x800) MX[B]
        [6] -1  0       0xfe02a000 - 0xfe02afff (0x1000) MX[B]
        [7] -1  0       0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
        [8] -1  0       0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
        [9] -1  0       0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
        [10] -1 0       0xfeb00000 - 0xfeb000ff (0x100) MX[B]
        [11] -1 0       0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
        [12] -1 0       0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
        [13] -1 0       0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
        [14] -1 0       0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
        [15] -1 0       0x0000ffff - 0x0000ffff (0x1) IX[B]
        [16] -1 0       0x00000000 - 0x000000ff (0x100) IX[B]
        [17] -1 0       0x0000a800 - 0x0000a8ff (0x100) IX[B]
        [18] -1 0       0x0000ac00 - 0x0000ac7f (0x80) IX[B]
        [19] -1 0       0x0000bc00 - 0x0000bc07 (0x8) IX[B]
        [20] -1 0       0x0000c000 - 0x0000c00f (0x10) IX[B]
        [21] -1 0       0x00000b60 - 0x00000b63 (0x4) IX[B]
        [22] -1 0       0x00000960 - 0x00000967 (0x8) IX[B]
        [23] -1 0       0x00000be0 - 0x00000be3 (0x4) IX[B]
        [24] -1 0       0x000009e0 - 0x000009e7 (0x8) IX[B]
        [25] -1 0       0x0000d400 - 0x0000d40f (0x10) IX[B]
        [26] -1 0       0x00000b70 - 0x00000b73 (0x4) IX[B]
        [27] -1 0       0x00000970 - 0x00000977 (0x8) IX[B]
        [28] -1 0       0x00000bf0 - 0x00000bf3 (0x4) IX[B]
        [29] -1 0       0x000009f0 - 0x000009f7 (0x8) IX[B]
        [30] -1 0       0x0000e800 - 0x0000e80f (0x10) IX[B]
        [31] -1 0       0x0000ec00 - 0x0000ecff (0x100) IX[B]
        [32] -1 0       0x0000f000 - 0x0000f0ff (0x100) IX[B]
        [33] -1 0       0x00001c40 - 0x00001c7f (0x40) IX[B]
[34] -1 0       0x00001c00 - 0x00001c3f (0x40) IX[B]
        [35] -1 0       0x0000fc00 - 0x0000fc1f (0x20) IX[B]
        [36] -1 0       0x00006c00 - 0x00006c7f (0x80) IX[B](B)
(II) LoadModule: "i2c"
(II) Loading /usr/lib/xorg/modules/libi2c.so
(II) Module i2c: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.2.0
        ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "bitmap"
(II) Reloading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Loading font Bitmap
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
        compiled for 7.1.1, module version = 2.1.0
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
        compiled for 4.0.2, module version = 1.0.9746
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules/libint10.so
(II) Module int10: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "type1"
(II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.2
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Type1
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules/libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.1.0
        ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "nvidia"
(II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
(II) Module nvidia: vendor="NVIDIA Corporation"
        compiled for 4.0.2, module version = 1.0.9746
        Module class: X.Org Video Driver
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.1.0
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.6
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.1.1
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.6
(II) LoadModule: "wacom"
(II) Loading /usr/lib/xorg/modules/input/wacom_drv.so
(II) Module wacom: vendor="X.Org Foundation"
        compiled for 4.3.99.902, module version = 1.0.0
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.6
(II) Wacom driver level: 47-0.7.2 $
(II) NVIDIA dlloader X Driver  1.0-9746  Fri Dec 15 09:56:41 PST 2006
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 05:00:0
(--) Assigning device section with no busID to primary device
(--) Chipset NVIDIA GPU found
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "wfb"
(II) LoadModule: "wfb"
(II) Loading /usr/lib/xorg/modules/libwfb.so
(II) Module wfb: vendor="X.Org Foundation"
        compiled for 7.1.99.2, module version = 1.0.0
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 0.1.0
        ABI class: X.Org Video Driver, version 1.0
(II) resource ranges after xf86ClaimFixedResources() call:
        [0] -1  0       0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[B]
        [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1  0       0xfdef8000 - 0xfdefbfff (0x4000) MX[B]
        [5] -1  0       0xfdeff000 - 0xfdeff7ff (0x800) MX[B]
        [6] -1  0       0xfe02a000 - 0xfe02afff (0x1000) MX[B]
        [7] -1  0       0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
        [8] -1  0       0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
[9] -1  0       0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
        [10] -1 0       0xfeb00000 - 0xfeb000ff (0x100) MX[B]
        [11] -1 0       0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
        [12] -1 0       0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
        [13] -1 0       0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
        [14] -1 0       0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
        [15] -1 0       0x0000ffff - 0x0000ffff (0x1) IX[B]
        [16] -1 0       0x00000000 - 0x000000ff (0x100) IX[B]
        [17] -1 0       0x0000a800 - 0x0000a8ff (0x100) IX[B]
        [18] -1 0       0x0000ac00 - 0x0000ac7f (0x80) IX[B]
        [19] -1 0       0x0000bc00 - 0x0000bc07 (0x8) IX[B]
        [20] -1 0       0x0000c000 - 0x0000c00f (0x10) IX[B]
        [21] -1 0       0x00000b60 - 0x00000b63 (0x4) IX[B]
        [22] -1 0       0x00000960 - 0x00000967 (0x8) IX[B]
        [23] -1 0       0x00000be0 - 0x00000be3 (0x4) IX[B]
        [24] -1 0       0x000009e0 - 0x000009e7 (0x8) IX[B]
        [25] -1 0       0x0000d400 - 0x0000d40f (0x10) IX[B]
        [26] -1 0       0x00000b70 - 0x00000b73 (0x4) IX[B]
        [27] -1 0       0x00000970 - 0x00000977 (0x8) IX[B]
        [28] -1 0       0x00000bf0 - 0x00000bf3 (0x4) IX[B]
        [29] -1 0       0x000009f0 - 0x000009f7 (0x8) IX[B]
        [30] -1 0       0x0000e800 - 0x0000e80f (0x10) IX[B]
        [31] -1 0       0x0000ec00 - 0x0000ecff (0x100) IX[B]
        [32] -1 0       0x0000f000 - 0x0000f0ff (0x100) IX[B]
        [33] -1 0       0x00001c40 - 0x00001c7f (0x40) IX[B]
        [34] -1 0       0x00001c00 - 0x00001c3f (0x40) IX[B]
        [35] -1 0       0x0000fc00 - 0x0000fc1f (0x20) IX[B]
        [36] -1 0       0x00006c00 - 0x00006c7f (0x80) IX[B](B)
(II) resource ranges after probing:
        [0] -1  0       0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[B]
        [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1  0       0xfdef8000 - 0xfdefbfff (0x4000) MX[B]
        [5] -1  0       0xfdeff000 - 0xfdeff7ff (0x800) MX[B]
        [6] -1  0       0xfe02a000 - 0xfe02afff (0x1000) MX[B]
        [7] -1  0       0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
        [8] -1  0       0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
        [9] -1  0       0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
        [10] -1 0       0xfeb00000 - 0xfeb000ff (0x100) MX[B]
        [11] -1 0       0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
        [12] -1 0       0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
        [13] -1 0       0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
        [14] -1 0       0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
        [15] 0  0       0x000a0000 - 0x000affff (0x10000) MS[B]
        [16] 0  0       0x000b0000 - 0x000b7fff (0x8000) MS[B]
        [17] 0  0       0x000b8000 - 0x000bffff (0x8000) MS[B]
        [18] -1 0       0x0000ffff - 0x0000ffff (0x1) IX[B]
        [19] -1 0       0x00000000 - 0x000000ff (0x100) IX[B]
        [20] -1 0       0x0000a800 - 0x0000a8ff (0x100) IX[B]
        [21] -1 0       0x0000ac00 - 0x0000ac7f (0x80) IX[B]
        [22] -1 0       0x0000bc00 - 0x0000bc07 (0x8) IX[B]
        [23] -1 0       0x0000c000 - 0x0000c00f (0x10) IX[B]
        [24] -1 0       0x00000b60 - 0x00000b63 (0x4) IX[B]
        [25] -1 0       0x00000960 - 0x00000967 (0x8) IX[B]
        [26] -1 0       0x00000be0 - 0x00000be3 (0x4) IX[B]
        [27] -1 0       0x000009e0 - 0x000009e7 (0x8) IX[B]
        [28] -1 0       0x0000d400 - 0x0000d40f (0x10) IX[B]
        [29] -1 0       0x00000b70 - 0x00000b73 (0x4) IX[B]
        [30] -1 0       0x00000970 - 0x00000977 (0x8) IX[B]
        [31] -1 0       0x00000bf0 - 0x00000bf3 (0x4) IX[B]
        [32] -1 0       0x000009f0 - 0x000009f7 (0x8) IX[B]
 [33] -1 0       0x0000e800 - 0x0000e80f (0x10) IX[B]
        [34] -1 0       0x0000ec00 - 0x0000ecff (0x100) IX[B]
        [35] -1 0       0x0000f000 - 0x0000f0ff (0x100) IX[B]
        [36] -1 0       0x00001c40 - 0x00001c7f (0x40) IX[B]
        [37] -1 0       0x00001c00 - 0x00001c3f (0x40) IX[B]
        [38] -1 0       0x0000fc00 - 0x0000fc1f (0x20) IX[B]
        [39] -1 0       0x00006c00 - 0x00006c7f (0x80) IX[B](B)
        [40] 0  0       0x000003b0 - 0x000003bb (0xc) IS[B]
        [41] 0  0       0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(0): Option "NoLogo" "True"
(**) NVIDIA(0): Option "UseEdidFreqs" "FALSE"
(**) NVIDIA(0): Option "UseEdidDpi" "TRUE"
(**) NVIDIA(0): Enabling RENDER acceleration
(**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID has been
(**) NVIDIA(0):     disabled on all display devices.
(II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
(II) NVIDIA(0):     enabled.
(II) NVIDIA(0): NVIDIA GPU GeForce 7900 GT/GTO at PCI:5:0:0 (GPU-0)
(--) NVIDIA(0): Memory: 262144 kBytes
(--) NVIDIA(0): VideoBIOS: 05.71.22.12.83
(II) NVIDIA(0): Detected PCI Express Link width: 16X
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(--) NVIDIA(0): Connected display device(s) on GeForce 7900 GT/GTO at
(--) NVIDIA(0):     PCI:5:0:0:
(--) NVIDIA(0):     UPV UP-M30W1 (DFP-0)
(--) NVIDIA(0): UPV UP-M30W1 (DFP-0): 330.0 MHz maximum pixel clock
(--) NVIDIA(0): UPV UP-M30W1 (DFP-0): Internal Dual Link TMDS
(II) NVIDIA(0): Assigned Display Device: DFP-0
(WW) NVIDIA(0): No valid modes for "2560x1600"; removing.
(WW) NVIDIA(0): No valid modes for "1200x800"; removing.
(II) NVIDIA(0): Validated modes:
(II) NVIDIA(0):     "1280x800"
(II) NVIDIA(0):     "1280x768"
(II) NVIDIA(0):     "1024x768"
(II) NVIDIA(0):     "800x600"
(II) NVIDIA(0): Virtual screen size determined to be 1280 x 800
(--) NVIDIA(0): DPI set to (40, 45); computed from "UseEdidDpi" X config
(--) NVIDIA(0):     option
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
        [0] 0   0       0xfb000000 - 0xfbffffff (0x1000000) MX[B]
        [1] 0   0       0xd0000000 - 0xdfffffff (0x10000000) MX[B]
        [2] 0   0       0xfa000000 - 0xfaffffff (0x1000000) MX[B]
        [3] -1  0       0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [4] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[B]
        [5] -1  0       0x000c0000 - 0x000effff (0x30000) MX[B]
        [6] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [7] -1  0       0xfdef8000 - 0xfdefbfff (0x4000) MX[B]
        [8] -1  0       0xfdeff000 - 0xfdeff7ff (0x800) MX[B]
        [9] -1  0       0xfe02a000 - 0xfe02afff (0x1000) MX[B]
        [10] -1 0       0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
        [11] -1 0       0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
        [12] -1 0       0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
        [13] -1 0       0xfeb00000 - 0xfeb000ff (0x100) MX[B]
        [14] -1 0       0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
        [15] -1 0       0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[16] -1 0       0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
        [17] -1 0       0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
        [18] 0  0       0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
        [19] 0  0       0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
        [20] 0  0       0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
        [21] 0  0       0x00006c00 - 0x00006c7f (0x80) IX[B]
        [22] -1 0       0x0000ffff - 0x0000ffff (0x1) IX[B]
        [23] -1 0       0x00000000 - 0x000000ff (0x100) IX[B]
        [24] -1 0       0x0000a800 - 0x0000a8ff (0x100) IX[B]
        [25] -1 0       0x0000ac00 - 0x0000ac7f (0x80) IX[B]
        [26] -1 0       0x0000bc00 - 0x0000bc07 (0x8) IX[B]
        [27] -1 0       0x0000c000 - 0x0000c00f (0x10) IX[B]
        [28] -1 0       0x00000b60 - 0x00000b63 (0x4) IX[B]
        [29] -1 0       0x00000960 - 0x00000967 (0x8) IX[B]
        [30] -1 0       0x00000be0 - 0x00000be3 (0x4) IX[B]
        [31] -1 0       0x000009e0 - 0x000009e7 (0x8) IX[B]
        [32] -1 0       0x0000d400 - 0x0000d40f (0x10) IX[B]
        [33] -1 0       0x00000b70 - 0x00000b73 (0x4) IX[B]
        [34] -1 0       0x00000970 - 0x00000977 (0x8) IX[B]
        [35] -1 0       0x00000bf0 - 0x00000bf3 (0x4) IX[B]
        [36] -1 0       0x000009f0 - 0x000009f7 (0x8) IX[B]
        [37] -1 0       0x0000e800 - 0x0000e80f (0x10) IX[B]
        [38] -1 0       0x0000ec00 - 0x0000ecff (0x100) IX[B]
        [39] -1 0       0x0000f000 - 0x0000f0ff (0x100) IX[B]
        [40] -1 0       0x00001c40 - 0x00001c7f (0x40) IX[B]
        [41] -1 0       0x00001c00 - 0x00001c3f (0x40) IX[B]
        [42] -1 0       0x0000fc00 - 0x0000fc1f (0x20) IX[B]
        [43] -1 0       0x00006c00 - 0x00006c7f (0x80) IX[B](B)
        [44] 0  0       0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
        [45] 0  0       0x000003c0 - 0x000003df (0x20) IS[B](OprU)
 
Old 08-01-2007, 04:55 AM   #9
andou
Member
 
Registered: Jul 2007
Location: Seoul, S. Korea
Distribution: Ubuntu 9.10
Posts: 44

Original Poster
Rep: Reputation: 15
Ok... Those weren't exactly half and half... Here's the last part:
Code:
(II) NVIDIA(0): Setting mode "1280x800"
(II) Loading extension NV-GLX
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(0): Backing store disabled
(==) NVIDIA(0): Silken mouse enabled
(**) Option "dpms"
(**) NVIDIA(0): DPMS enabled
(II) Loading extension NV-CONTROL
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(II) Initializing extension GLX
error opening security policy file /usr/lib/xserver/SecurityPolicy
(**) Option "CoreKeyboard"
(**) Generic Keyboard: Core Keyboard
(**) Option "Protocol" "standard"
(**) Generic Keyboard: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Generic Keyboard: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Generic Keyboard: XkbModel: "pc105"
(**) Option "XkbLayout" "us"
(**) Generic Keyboard: XkbLayout: "us"
(**) Option "XkbOptions" "lv3:ralt_switch"
(**) Generic Keyboard: XkbOptions: "lv3:ralt_switch"
(**) Option "CustomKeycodes" "off"
(**) Generic Keyboard: CustomKeycodes disabled
(**) Option "Protocol" "ExplorerPS/2"
(**) Configured Mouse: Device: "/dev/input/mice"
(**) Configured Mouse: Protocol: "ExplorerPS/2"
(**) Option "CorePointer"
(**) Configured Mouse: Core Pointer
(**) Option "Device" "/dev/input/mice"
(**) Option "Emulate3Buttons" "true"
(**) Configured Mouse: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Configured Mouse: ZAxisMapping: buttons 4 and 5
(**) Configured Mouse: Buttons: 9
(**) Option "SendCoreEvents"
(**) stylus: always reports core events
(**) stylus device is /dev/wacom
(**) stylus is in absolute mode
(**) stylus: forcing TabletPC ISD V4 protocol
(**) WACOM: suppress value is 2
(**) Option "BaudRate" "9600"
(**) stylus: serial speed 9600
(**) Option "SendCoreEvents"
(**) cursor: always reports core events
(**) cursor device is /dev/wacom
(**) cursor is in relative mode
(**) cursor: forcing TabletPC ISD V4 protocol
(**) WACOM: suppress value is 2
(**) Option "BaudRate" "9600"
(**) cursor: serial speed 9600
(**) Option "SendCoreEvents"
(**) eraser: always reports core events
(**) eraser device is /dev/wacom
(**) eraser is in absolute mode
(**) eraser: forcing TabletPC ISD V4 protocol
(**) WACOM: suppress value is 2
(**) Option "BaudRate" "9600"
(**) eraser: serial speed 9600
(II) XINPUT: Adding extended input device "eraser" (type: Wacom Eraser)
(II) XINPUT: Adding extended input device "cursor" (type: Wacom Cursor)
(II) XINPUT: Adding extended input device "stylus" (type: Wacom Stylus)
(II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
(II) XINPUT: Adding extended input device "Generic Keyboard" (type: KEYBOARD)
    xkb_keycodes             { include "xfree86+aliases(qwerty)" };
    xkb_types                { include "complete" };
    xkb_compatibility        { include "complete" };
    xkb_symbols              { include "pc(pc105)+us+level3(ralt_switch)" };
    xkb_geometry             { include "pc(pc105)" };
(**) Option "Device" "/dev/wacom"
(EE) xf86OpenSerial: Cannot open device /dev/wacom
        No such file or directory.
Error opening /dev/wacom : Success
(EE) xf86OpenSerial: Cannot open device /dev/wacom
        No such file or directory.
Error opening /dev/wacom : Success
(**) Option "Device" "/dev/wacom"
(EE) xf86OpenSerial: Cannot open device /dev/wacom
No such file or directory.
Error opening /dev/wacom : Success
(EE) xf86OpenSerial: Cannot open device /dev/wacom
        No such file or directory.
Error opening /dev/wacom : Success
(**) Option "Device" "/dev/wacom"
(EE) xf86OpenSerial: Cannot open device /dev/wacom
        No such file or directory.
Error opening /dev/wacom : Success
(EE) xf86OpenSerial: Cannot open device /dev/wacom
        No such file or directory.
Error opening /dev/wacom : Success
(II) Configured Mouse: ps2EnableDataReporting: succeeded
Could not init font path element /usr/share/fonts/X11/TTF/, removing from list!
Could not init font path element /usr/share/fonts/X11/OTF, removing from list!
 
Old 08-01-2007, 04:56 AM   #10
andou
Member
 
Registered: Jul 2007
Location: Seoul, S. Korea
Distribution: Ubuntu 9.10
Posts: 44

Original Poster
Rep: Reputation: 15
And here's my xorg.conf:
Code:
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder3)  Fri Dec 15 10:12:14 PST 2$

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "ServerLayout"
    Identifier     "Default Layout"
    Screen         "Default Screen" 0 0
    InputDevice    "Generic Keyboard"
    InputDevice    "Configured Mouse"
    InputDevice    "stylus" "SendCoreEvents"
    InputDevice    "cursor" "SendCoreEvents"
    InputDevice    "eraser" "SendCoreEvents"
EndSection

Section "Files"

        # path to defoma fonts
    FontPath        "/usr/share/X11/fonts/misc"
 FontPath        "/usr/share/X11/fonts/cyrillic"
    FontPath        "/usr/share/X11/fonts/100dpi/:unscaled"
    FontPath        "/usr/share/X11/fonts/75dpi/:unscaled"
    FontPath        "/usr/share/X11/fonts/Type1"
    FontPath        "/usr/share/X11/fonts/100dpi"
    FontPath        "/usr/share/X11/fonts/75dpi"
    FontPath        "/usr/share/fonts/X11/misc"
    FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
    Load           "i2c"
    Load           "bitmap"
    Load           "ddc"
    Load           "extmod"
    Load           "freetype"
    Load           "glx"
    Load           "int10"
    Load           "type1"
    Load           "vbe"
EndSection

Section "InputDevice"
    Identifier     "Generic Keyboard"
    Driver         "kbd"
    Option         "CoreKeyboard"
    Option         "XkbRules" "xorg"
    Option         "XkbModel" "pc105"
    Option         "XkbLayout" "us"
    Option         "XkbOptions" "lv3:ralt_switch"
EndSection
Section "InputDevice"
    Identifier     "Configured Mouse"
    Driver         "mouse"
    Option         "CorePointer"
    Option         "Device" "/dev/input/mice"
    Option         "Protocol" "ExplorerPS/2"
    Option         "ZAxisMapping" "4 5"
    Option         "Emulate3Buttons" "true"
EndSection

Section "InputDevice"

                                                      # /dev/input/event
                                                      # for USB
    Identifier     "stylus"
    Driver         "wacom"
    Option         "Device" "/dev/wacom"          # Change to
    Option         "Type" "stylus"
    Option         "ForceDevice" "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"

                                                      # /dev/input/event
                                                      # for USB
    Identifier     "eraser"
    Driver         "wacom"
    Option         "Device" "/dev/wacom"          # Change to
    Option         "Type" "eraser"
    Option         "ForceDevice" "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"

                                                      # /dev/input/event
                                                      # for USB
    Identifier     "cursor"
    Driver         "wacom"
    Option         "Device" "/dev/wacom"          # Change to
    Option         "Type" "cursor"
    Option         "ForceDevice" "ISDV4"               # Tablet PC ONLY
EndSection

Section "Monitor"
    Identifier     "UP-M30W1"
    Option         "DPMS"
    HorizSync      30-80
    VertRefresh    59-61
EndSection

Section "Device"
    Identifier     "NVIDIA Corporation NVIDIA Default Card"
    Driver         "nvidia"
    Option "UseEdidFreqs" "FALSE"
    Option "UseEdidDpi" "TRUE"
#    Option "ModeValidation" "NoEdidModes"
EndSection

Section "Screen"
    Identifier     "Default Screen"
    Device         "NVIDIA Corporation NVIDIA Default Card"
 Monitor        "UP-M30W1"
    DefaultDepth    24
#    Option         "UseEdid" "True"
    Option         "NoLogo" "True"
    SubSection     "Display"
        Depth       24
        Modes      "2560x1600" "1280x800" "1280x768" "1200x800" "1024x768" "800x60$
    EndSubSection
  EndSection

Section "Extensions"
    Option         "Composite" "Enable"
EndSection
I commented out Option "ModeValidation" "NoEdidModes" because, I couldn't see anything but a black screen after reboot with it in.
 
Old 08-01-2007, 12:46 PM   #11
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
Thanks for providing that information.
Quote:
I commented out Option "ModeValidation" "NoEdidModes" because, I couldn't see anything but a black screen after reboot with it in.
The log shows that X is still thinking that your monitor cannot do 2560x1600, and this is because you commented out the line
Option "ModeValidation" "NoEdidModes". It would be interesting to see what the X error log said when you got the black screen. No need to post it in full next time, just the error parts. [The fontpath errors do not seem to be imporant - it eventually sorts itself out!]

There's a typo in your display modes line:
Code:
Modes      "2560x1600" "1280x800" "1280x768" "1200x800" "1024x768" "800x60$
Otherwise your xorg.conf looks OK to me, except that I notice that you have this:
Code:
Section "Extensions"
    Option         "Composite" "Enable"
EndSection
.. and I have a suspicion that this may be complicating things. What do you need this extension for? We basically have a screen-resolution problem, let's just get that sorted out and then play with extra extensions.

Some things to try:
Re-enable "ModeValidation" "NoEdidModes". I think this is an essential step for you.
What does the log say when you get the black screen? (You should be able to get at it from a terminal on <CTL><ALT><F2>, even if you have a black screen on your X terminal (<CTL><ALT><F7>))
Comment out the Section "Extensions" part and try again.
Any difference in the log?
Maybe try NVIDIAs latest driver: NVIDIA-Linux-x86-100.14.11-pkg1.run this solved a load of problems (mainly with Googleearth rendering) for me.

Lastly, there's no need to reboot between all these changes. It gets tedious. You'll save yourself quite a lot of time if you have 2 terminal logins on <CTL><ALT><F2> and <CTL><ALT><F3>
Leave yourself logged in as root ( sudo -i ) on F3, and yourself on F2. As root, stop X with either /etc/init.d/kdm stop or /etc/init.d/gdm stop, depending on KDE / gnome. Make your edits in the root terminal, then switch back to yourself, and try a startx, or in the root terminal /etc/init.d/kdm start. Either of these will switch you to the F7 X terminal if X starts OK.

Thanks for persevering - I am sure this problem will be fixable eventually. .. ...

Last edited by tredegar; 08-01-2007 at 12:48 PM.
 
Old 08-02-2007, 08:29 AM   #12
andou
Member
 
Registered: Jul 2007
Location: Seoul, S. Korea
Distribution: Ubuntu 9.10
Posts: 44

Original Poster
Rep: Reputation: 15
Quote:
There's a typo in your display modes line:
Code:
Modes      "2560x1600" "1280x800" "1280x768" "1200x800" "1024x768" "800x60$
That's how my terminal shows that there's more text in the line. My monitor may be large, but with the resolution at 1280x800, I don't have nearly as much space to work with as I should.

Quote:
Otherwise your xorg.conf looks OK to me, except that I notice that you have this:
Code:
Section "Extensions"
    Option         "Composite" "Enable"
EndSection
.. and I have a suspicion that this may be complicating things. What do you need this extension for?
I don't know what this is for. I have commented it out.

Quote:
Some things to try:
Re-enable "ModeValidation" "NoEdidModes". I think this is an essential step for you.
What does the log say when you get the black screen?
Ok, tried that. Here's the Xorg.0.log:
Code:
(II) Setting vga for screen 0.
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(0): Option "NoLogo" "True"
(**) NVIDIA(0): Option "UseEdidFreqs" "FALSE"
(**) NVIDIA(0): Option "UseEdidDpi" "TRUE"
(**) NVIDIA(0): Option "ModeValidation" "NoEdidModes"
(**) NVIDIA(0): Enabling RENDER acceleration
(**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID has been
(**) NVIDIA(0):     disabled on all display devices.
(II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
(II) NVIDIA(0):     enabled.
(II) NVIDIA(0): NVIDIA GPU GeForce 7900 GT/GTO at PCI:5:0:0 (GPU-0)
(--) NVIDIA(0): Memory: 262144 kBytes
(--) NVIDIA(0): VideoBIOS: 05.71.22.12.83
(II) NVIDIA(0): Detected PCI Express Link width: 16X
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(--) NVIDIA(0): Connected display device(s) on GeForce 7900 GT/GTO at
(--) NVIDIA(0):     PCI:5:0:0:
(--) NVIDIA(0):     UPV UP-M30W1 (DFP-0)
(--) NVIDIA(0): UPV UP-M30W1 (DFP-0): 330.0 MHz maximum pixel clock
(--) NVIDIA(0): UPV UP-M30W1 (DFP-0): Internal Dual Link TMDS
(II) NVIDIA(0): Mode Validation Overrides for UPV UP-M30W1 (DFP-0):
(II) NVIDIA(0):     NoEdidModes
(II) NVIDIA(0): Assigned Display Device: DFP-0
(WW) NVIDIA(0): No valid modes for "2560x1600"; removing.
(WW) NVIDIA(0): No valid modes for "1280x800"; removing.
(WW) NVIDIA(0): No valid modes for "1280x768"; removing.
(WW) NVIDIA(0): No valid modes for "1200x800"; removing.
(WW) NVIDIA(0): No valid modes for "1024x768"; removing.(WW) NVIDIA(0): No valid modes for "800x600"; removing.
(WW) NVIDIA(0):
(WW) NVIDIA(0): Unable to validate any modes; falling back to the default mode
(WW) NVIDIA(0):     "nvidia-auto-select".
(WW) NVIDIA(0):
(II) NVIDIA(0): Validated modes:
(II) NVIDIA(0):     "nvidia-auto-select"
(II) NVIDIA(0): Virtual screen size determined to be 640 x 480
(--) NVIDIA(0): DPI set to (20, 27); computed from "UseEdidDpi" X config
(--) NVIDIA(0):     option
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
Quote:
Comment out the Section "Extensions" part and try again.
Any difference in the log?
Maybe try NVIDIAs latest driver: NVIDIA-Linux-x86-100.14.11-pkg1.run
Thank you so much for all your help so far That's it for tonight, I'll have more time to try playing around with the "Extensions" section, and getting the latest NVIDIA driver tomorrow.
 
Old 08-02-2007, 12:55 PM   #13
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
I see it is still saying "No valid modes for..." what are perfectly valid modes!
Quote:
That's it for tonight, I'll have more time to try playing around with the "Extensions" section, and getting the latest NVIDIA driver tomorrow.
I understand, I'm tired too - work, not linux!
Let us know how you get on with the newer driver. The only other thing I can offer at this stage would be to try disabling EDID completely with Option "UseEDID" "FALSE" [see my post above for where this option goes], and commenting out all other references to EDID, and then explicitly defining your sync rates (already done) and DPI. DPI goes like this, here:
Code:
Section "Device"
        Screen      0
        Identifier  "Card0"
        Driver      "nvidia"
        Option      "NoLogo" "True"
        Option      "DPI"  "78 x 78"
EndSection
"78 x 78" may not be suitable for you, but it might be a start, and can be adjusted later when you, eventually, get this wretched thing to work
 
Old 08-04-2007, 09:19 AM   #14
andou
Member
 
Registered: Jul 2007
Location: Seoul, S. Korea
Distribution: Ubuntu 9.10
Posts: 44

Original Poster
Rep: Reputation: 15
Well... I've tried playing around with my xorg.conf file... I noticed that when I commented out the Option part of "Extentions" nothing happened, but when I commented out section "Extentions" I got a black screen.

I've installed the Nvidia driver - there's no more 'Section "Extentions"' so, I guess that part has worked itself out, at least.

Anyway, I've tried with the useEDID "False" - and got black screen. Same with "ModeValidation" "NoEdidModes"

I've tried a couple of things. I really don't know what else to do.

I also noticed that there's an option to upgrade to 7.04 in the upgrade manager. I don't know if that would help.

Any ideas?
 
Old 08-04-2007, 09:39 AM   #15
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
When you tried with Option "UseEDID" "FALSE" - and got a black screen, what was the error in the Xlog?

The only reliable way of tracking down what is wrong is to:
1] Make a single change to xorg.conf
2] Restart X
3] Look at the error log
4] Repeat until it is working.

Did you install the NVIDIA-Linux-x86-100.14.11-pkg1.run driver?

I don't know if upgrading to 7.04 will help or not, but as a general rule, things seem to go more smoothly when you install a new version from scratch, rather than "upgrade". If you have spare disk space you could install 7.04 on a separate partition and try it, but I have learned more from wrestling with a problem until it is solved.

If you get to [3] above and are not sure what the error is referring to, please post details (and all of xorg.conf) and we'll try to help.
 
  


Reply

Tags
monitor, nvidia, resolution, ubuntu610


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Fedora Core 2: Screen Resolution can not change from "800X600" to "1024X 768" suhaimi_sj Fedora - Installation 18 12-17-2009 03:29 AM
Switch from 17" monitor to 15" monitor. Need to know how to change settings. DoThatPlan Linux - Hardware 1 04-14-2004 08:11 PM
Monitor problems -- changing resolution back w/o monitor Jiawen Linux - Hardware 5 03-17-2004 10:06 PM
Monitor resolution too high for my monitor mjames_84 Linux - General 7 03-09-2004 10:51 PM
XF86Config : Option "Resolution" "800" carboncopy Slackware 2 12-16-2003 10:13 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 04:47 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration