PDA

View Full Version : HOWTO: NVIDIA TV-OUT for Newbies


Pages : [1] 2

tseliot
December 3rd, 2005, 10:39 AM
This guide works on Ubuntu Breezy and Ubuntu Dapper. Now it works also with driver 8762

NOTE: this guide has been translated into German by cfBuba:
http://www.ubuntu-forum.de/thread.php?threadid=13096

This guide is inspired to Promethe's, who I really want to thank because I have managed to get my TV-OUT to work thanks to his guide: HOWTO: TV-out in Hoary (nVidia?) (http://ubuntuforums.org/showthread.php?t=23628&highlight=Tv-out)

My guide is aimed at newbies who want to enable the TV-OUT port of their Nvidia graphic card. It works ONLY if you have a Nvidia card and it requires the Nvidia proprietary drivers.
If you need a guide to the installation of the Nvidia drivers your can try mine:

Guide for Breezy (http://ubuntuforums.org/showthread.php?t=75074)

Guide for Dapper (http://www.ubuntuforums.org/showthread.php?t=139264)

If you have problems with the resolution of your main Monitor: HOWTO: change resolution/refresh rate in Xorg (http://ubuntuforums.org/showthread.php?t=83973&highlight=resolution)


Make a backup of your xorg.conf
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
.
Edit your xorg.conf
If you use GNOME
sudo gedit /etc/X11/xorg.conf
OR if you use KDE
sudo kedit /etc/X11/xorg.conf
OR (this will work on every graphical interface)
sudo nano /etc/X11/xorg.conf

Get to the “Monitor” section and change the name (i.e. the identifier) of your current monitor to “Monitor[0]” and make it look like the following example:

Before:
Section "Monitor"
Identifier "AL1715"
Option "DPMS"
EndSection
After:
Section "Monitor"
Identifier "Monitor[0]" #CRT
Option "DPMS"
HorizSync 31.5-80
VertRefresh 56.3-75
EndSection

In my case the monitor had been detected by Ubuntu as "AL1715" therefore no refresh parameters were set (because that name corresponded to a particular profile)
If your monitor already has the its HorizSync and VertRefresh leave them as they are.
If it doesn't have them then you will have to put them manually as in the previous example (you can find the frequencies of vertical and horizontal refresh for your monitor in its manual or on the internet, in the website of its manufacturer)

Now you have to add your TV as the second monitor. You have to add the following lines under the section of the 1st monitor.

Section "Monitor"
Identifier "Monitor[1]" #TV
HorizSync 30-50
VertRefresh 60
EndSection

If you wish, you can change the HorizSync and VertRefresh, but those values should work fine on most new TVs.

Get to the "Device" section.
Now you have to change the name (i.e. the identifier) of your primary device (i.e. your graphic card) to "Device[0]" and add the parameter “screen 0” as in the (2nd) example:
Before:
Section "Device"
Identifier "NVIDIA Corporation NV34 [GeForce FX 5500]"
Driver "nvidia"
BusID "PCI:1:0:0"
EndSection

After:
Section "Device"
Identifier "Device[0]"
Driver "nvidia"
BusID "PCI:1:0:0"
screen 0
EndSection

Now you have to add the TV-OUT as a device below your Device[0] and add all the options listed below. Make it look EXACTLY like this example:

Section "Device"
Driver "nvidia"
Identifier "Device[1]"
Screen 1
Option "TVOutFormat" "Composite" #or SVIDEO etc
Option "TVStandard" "PAL-G" #or NTSC etc
Option "ConnectedMonitor" "Monitor[1]"
BusID "PCI:1:0:0" #adjust using 'lspci' or cat /proc/pci
EndSection

You might want to change 2 things in the example above:
1)You can change "Composite" to “SVIDEO” (according to the type of video cable you use)
2)You can change your TVstandard from “PAL-G” to “NTSC-M” or "NTSC-J" according to your tv.

If you did everything correctly you should have two Section “Device” like in the example below:

Section "Device"
Identifier "Device[0]"
Driver "nvidia"
BusID "PCI:1:0:0"
screen 0
EndSection

Section "Device"
Driver "nvidia"
Identifier "Device[1]"
Screen 1
Option "TVOutFormat" "Composite" #or SVIDEO etc
Option "TVStandard" "PAL-G" #or NTSC-M etc
Option "ConnectedMonitor" "Monitor[1]"
BusID "PCI:1:0:0" #adjust using 'lspci' or cat /proc/pci
EndSection


Get to the “Screen” section and change Identifier, Monitor and Screen like in the (2nd) example below:

Before:
Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV34 [GeForce FX 5500]"
Monitor "AL1715"
etc.

After:
Section "Screen"
Identifier "Screen[0]"
Device "Device[0]"
Monitor "Monitor[0]"

[Of course the Screen section is longer than the one in the example (it contains your screen resolution, etc.)]

Now you have to put another section under the previous. Make the new section look EXACTLY like the following example:

Section "Screen"
Device "Device[1]"
Identifier "Screen[1]"
Monitor "Monitor[1]"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768_60"
EndSubSection
EndSection


NOTE if your TV does not support a refresh rate of 60Hz you might want to set this line "Modes "1024x768_60"" as "Modes "1024x768_50"" in order to set the refresh rate to 50Hz

If you did everything correctly you should have two Section “Screen” like in the example below (OF COURSE the resolutions you have in your xorg.conf are likely to be different from mine, therefore leave them as they are):

Section "Screen"
Identifier "Screen[0]"
Device "Device[0]"
Monitor "Monitor[0]"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
EndSection

Section "Screen"
Device "Device[1]"
Identifier "Screen[1]"
Monitor "Monitor[1]"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768_60"
EndSubSection
EndSection


Now you have to change your "ServerLayout" section and make it look like the following example:

Section "ServerLayout"
Identifier "Simple Layout"
Screen 0 "Screen[0]"
Screen 1 "Screen[1]" RightOf "Screen[0]"
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection

Then change the two words in red and blue in the previous example with the ones you can find in your “InputDevice" section (which I will put in red and blue respectively):

In my case the "InputDevice" Section is the following:
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xfree86"
Option "XkbModel" "pc105"
Option "XkbLayout" "gb"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection

Therefore in my case the result would be the following:

Section "ServerLayout"
Identifier "Simple Layout"
Screen 0 "Screen[0]"
Screen 1 "Screen[1]" RightOf "Screen[0]"
InputDevice "Configured Mouse" "CorePointer"
InputDevice "Generic Keyboard" "CoreKeyboard"
EndSection

Ok, now save your xorg.conf and exit.

Now, let's try it.
Plug in the video cable (make sure that both your TV and your graphic card are linked by this cable)
Log out
Restart your computer.
Then log in and you will be able to see your desktop on your TV screen (ONLY after you login). Keep in mind that it is not a clone of your current desktop. It has its own resolution and you can use it INDEPENDENTLY from the desktop you can see on your main monitor.

For example you can watch a film (in full screen) on your TV screen while writing a text or surfing the web on your main monitor.

Here's how it works:

Move your mouse to the extreme right part of the screen until it disappears from your main monitor. You will now be able to see the cursor on your TV. From there you can use the cursor to open the files you need etc.

If you need to use the mouse cursor in your 1st desktop you have to move it to the extreme left of the screen until it disappears from your TV and reappears on your main Monitor.

Enjoy!

Alberto

corruption
December 5th, 2005, 04:50 PM
I've run through all the listed steps in both this guide and the previously referenced one, and I never get anything displayed on my television. X loads fine, everything seems to be working, but to get display, I have to run the nvtv frontend and configure everything by hand, which ends with me having cloned screens and locked resolution. Any ideas as to what I may be doing wrong?

tseliot
December 5th, 2005, 05:22 PM
I've run through all the listed steps in both this guide and the previously referenced one, and I never get anything displayed on my television. X loads fine, everything seems to be working, but to get display, I have to run the nvtv frontend and configure everything by hand, which ends with me having cloned screens and locked resolution. Any ideas as to what I may be doing wrong?
Did you restart your computer?
nvtv is automatically launched every time you boot Ubuntu.

tabinin
December 5th, 2005, 10:04 PM
Thank you for this Howto. This has been the biggest struggle that I have had with Linux, right after Japanese input.

I have a display on my tv, with its own task bar. I am still having a couple of small problems...

One is that my autostart applications are starting and running on both screens. Any way I can get them to start only on "screen 0"?

The other problem is that I would like to be able to drag a mplayer window into screen 1 (TV), like I could in Windows. Any way to do that (or, are there any easy tricks or commands to get mplayer to open/play a movie directly on the tv?

I am using Kubuntu and a FX5200 card.

slide
December 5th, 2005, 10:22 PM
I followed the guide step by step (even went back through it a few times to make sure) but it just wont work. Whenever gdm starts all i see is a black screen. In order to get the actual login prompt to show up i have to manually change the resolution. The mouse can always go off to the right of the screen but it just comes right back on the left side. I can tell though that its trying to use a resolution of 1024x768 as the mouse is restricted to the upper left corner. I noticed in my Xorg.0.log that i get
(WW) NVIDIA(1): Invalid ConnectedMonitor string token: "Monitor[1]";
(WW) NVIDIA(1): discarding token.

and futher down it says

(II) NVIDIA(1): Connected display device(s): CRT-0

My xorg.conf http://rafb.net/paste/results/68jSsd63.html
My Xorg.0.log http://rafb.net/paste/results/asBLj525.html

Thanks

tabinin
December 5th, 2005, 10:38 PM
Slide,

One thing I noticed is that


Option "TVOutFormat" "SVIDEO"


should be with a dash in "S-VIDEO"

Option "TVOutFormat" "S-VIDEO"

I don't know if that si going to solve your problem, but is worth the addition.


I found something else. Take a look at this section from my (working) config:

Section "Device"
Identifier "Device[0]"
Driver "nvidia"
BusID "PCI:1:0:0"
Screen 0
Option "ConnectedMonitor" "Monitor[0]"
Option "NoLogo" "true
EndSection

Section "Device"
Driver "nvidia"
Identifier "Device[1]"
Screen 1
Option "TwinView" "true"
Option "TVOutFormat" "COMPOSITE"
Option "TVStandard" "NTSC-M"
Option "ConnectedMonitor" "TV"
BusID "PCI:1:0:0"
EndSection

The bolded parts are different than yours.

slide
December 5th, 2005, 11:34 PM
Yes, got it to work! :)
Ok, so tabinin you were right about the TVStandard being NTSC-M, but the TVOutFormat can only be SVIDEO and COMPOSITE, this is what i got in the log when i set it to S-VIDEO.


(**) NVIDIA(1): Option "TVOutFormat" "S-VIDEO"
(**) NVIDIA(1): Unknown TVOutFormat value. Known values are "SVIDEO" and
(**) NVIDIA(1): "COMPOSITE"

I don't know exactly what was wrong, it seems that xorg didnt like the name Monitor[1] and when i changed it to TV it works now, shrug. Thanks! :)

tseliot
December 6th, 2005, 08:45 AM
Yes, got it to work! :)
Ok, so tabinin you were right about the TVStandard being NTSC-M, but the TVOutFormat can only be SVIDEO and COMPOSITE, this is what i got in the log when i set it to S-VIDEO.


(**) NVIDIA(1): Option "TVOutFormat" "S-VIDEO"
(**) NVIDIA(1): Unknown TVOutFormat value. Known values are "SVIDEO" and
(**) NVIDIA(1): "COMPOSITE"

I don't know exactly what was wrong, it seems that xorg didnt like the name Monitor[1] and when i changed it to TV it works now, shrug. Thanks! :)

Weird... Anyhow I'll fix the s-video thing

Knorhaen
December 6th, 2005, 09:32 AM
I too had to change "Monitor[1]" to "TV".

However, my TV screen is still blank. I have the following messages in X.org's logfile:

(II) NVIDIA(0): Connected display device(s): CRT-0, TV-0
(WW) NVIDIA(0): Multiple displays connected, but only one display allowed;
(WW) NVIDIA(0): using first display

What's going on?

tseliot
December 6th, 2005, 09:38 AM
I too had to change "Monitor[1]" to "TV".

However, my TV screen is still blank. I have the following messages in X.org's logfile:

(II) NVIDIA(0): Connected display device(s): CRT-0, TV-0
(WW) NVIDIA(0): Multiple displays connected, but only one display allowed;
(WW) NVIDIA(0): using first display

What's going on?

Post your /etc/X11/xorg.conf , please.

Knorhaen
December 6th, 2005, 09:49 AM
I've attached my xorg.conf to this message.

misse-
December 6th, 2005, 12:26 PM
My Xorg.0.log gave me the following error (except those about "(II) NVIDIA(1): Not using default mode "1024x768" (hsync out of range)")

(EE) NVIDIA(1): This GPU cannot be shared by 2 X screens
(II) UnloadModule: "nvidia"
(II) UnloadModule: "ddc"

I'm not quite sure what to make of it, my Geforce 3 Ti 200 works in windows with tv-tools with PAL and color.. when I use the frontend for nvtv, I can clone the image, but no color on my TV. :-?

Here's my Xorg.conf

# /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 "Files"
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/CID"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath "/usr/share/X11/fonts/75dpi"
# paths to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection

Section "Module"
Load "GLcore"
Load "bitmap"
Load "ddc"
Load "dri"
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" "se"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection

Section "Device"
Identifier "Device[0]"
Driver "nvidia"
BusID "PCI:1:0:0"
VideoRam 64000
screen 0
EndSection

Section "Device"
Driver "nvidia"
Identifier "Device[1]"
Screen 1
Option "TVOutFormat" "SVIDEO" #or SVIDEO etc
Option "TVStandard" "NTSC-M" #or NTSC etc
#Option "ConnectedMonitor" "TV"
BusID "PCI:1:0:0" #adjust using 'lspci' or cat /proc/pci
EndSection


Section "Monitor"
Identifier "Monitor[0]" #CRT
Option "DPMS"
HorizSync 30-65
VertRefresh 50-75
EndSection

Section "Monitor"
Identifier "TV" #TV
HorizSync 60
VertRefresh 30-150
EndSection

Section "Screen"
Identifier "Screen[0]"
Device "Device[0]"
Monitor "Monitor[0]"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "Screen"
Device "Device[1]"
Identifier "Screen[1]"
Monitor "TV"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "800x600"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Simple Layout"
Screen 0 "Screen[0]"
Screen 1 "Screen[1]" rightof "Screen[0]"
InputDevice "Configured Mouse" "CorePointer"
InputDevice "Generic Keyboard" "CoreKeyboard"
EndSection

Section "DRI"
Mode 0666
EndSection

tseliot
December 6th, 2005, 12:27 PM
I've attached my xorg.conf to this message.
I hope I can help you tomorrow because today (I have deadlines) I have to finish writing (correcting actually) the abstract of my thesis (I'm going to get my degree on December 14).
Please, don't feel abandoned;) .

Knorhaen
December 6th, 2005, 12:32 PM
I hope I can help you tomorrow because today (I have deadlines) I have to finish writing (correcting actually) the abstract of my thesis (I'm going to get my degree on December 14).
Please, don't feel abandoned;) .
I wont, don't worry! ;)

I'll try to fiddle around with the settings a bit, maybe I can work this out on my own.

Knorhaen
December 6th, 2005, 02:44 PM
I managed to remove all errors by renaming "Monitor[0]" to "CRT" and "Monitor[1]" to TV.

I still don't have an image on my TV, though. I suspect the composite-cable is broken: all software appears to be working fine, but the image on my TV is not recognizable and completely distorted.

misse-
December 6th, 2005, 04:51 PM
I managed to remove all errors by renaming "Monitor[0]" to "CRT" and "Monitor[1]" to TV.

I still don't have an image on my TV, though. I suspect the composite-cable is broken: all software appears to be working fine, but the image on my TV is not recognizable and completely distorted.

I'll try that, thanks. :)
Do you think you can find the time to go through my xorg.conf, that I've posted earlier? I've looked through it several times, but my head's full of schoolwork so I can't really focus.

Oh,and tseliot, I've installed the latest nvidia drivers through automatix, and they're working properly with the splash-image 'n all. Do I still have to re-install them according to your guide?

el3ktro
December 6th, 2005, 06:32 PM
Thanks for this how-to, I'll try it this evening. One question though, what is nvtv actually used for? What does it do? Some people said they used nvtv to configure this thing, so where is the difference then configuring it in xorg.conf? Well it seems that with your how-to you get two full-blown desktops, is there a way to get a blank, black screen on the TV, and just display a video from e.g. mplayer/xine on the TV?


Tom

tseliot
December 7th, 2005, 04:18 PM
My Xorg.0.log gave me the following error (except those about "(II) NVIDIA(1): Not using default mode "1024x768" (hsync out of range)")

(EE) NVIDIA(1): This GPU cannot be shared by 2 X screens
(II) UnloadModule: "nvidia"
(II) UnloadModule: "ddc"

I'm not quite sure what to make of it, my Geforce 3 Ti 200 works in windows with tv-tools with PAL and color.. when I use the frontend for nvtv, I can clone the image, but no color on my TV. :-?

Here's my Xorg.conf

# /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 "Files"
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/CID"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath "/usr/share/X11/fonts/75dpi"
# paths to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection

Section "Module"
Load "GLcore"
Load "bitmap"
Load "ddc"
Load "dri"
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" "se"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection

Section "Device"
Identifier "Device[0]"
Driver "nvidia"
BusID "PCI:1:0:0"
VideoRam 64000
screen 0
EndSection

Section "Device"
Driver "nvidia"
Identifier "Device[1]"
Screen 1
Option "TVOutFormat" "SVIDEO" #or SVIDEO etc
Option "TVStandard" "NTSC-M" #or NTSC etc
#Option "ConnectedMonitor" "TV"
BusID "PCI:1:0:0" #adjust using 'lspci' or cat /proc/pci
EndSection


Section "Monitor"
Identifier "Monitor[0]" #CRT
Option "DPMS"
HorizSync 30-65
VertRefresh 50-75
EndSection

Section "Monitor"
Identifier "TV" #TV
HorizSync 60
VertRefresh 30-150
EndSection

Section "Screen"
Identifier "Screen[0]"
Device "Device[0]"
Monitor "Monitor[0]"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "Screen"
Device "Device[1]"
Identifier "Screen[1]"
Monitor "TV"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "800x600"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Simple Layout"
Screen 0 "Screen[0]"
Screen 1 "Screen[1]" rightof "Screen[0]"
InputDevice "Configured Mouse" "CorePointer"
InputDevice "Generic Keyboard" "CoreKeyboard"
EndSection

Section "DRI"
Mode 0666
EndSection


Add this option in the "Section Device" of your xorg.conf:
Option "IgnoreEDID" "True"
Then log out and press CTRL+ALT+BACKSPACE

If this doesn't solve the problem try this:
press CTRL+ALT+F1
type "sudo /etc/init.d/gdm stop" OR (if you use KDE) "sudo /etc/init.d/kdm stop"
then "startx -- -verbose 5 -logverbose 5"

and post the output

tseliot
December 7th, 2005, 04:45 PM
Thanks for this how-to, I'll try it this evening. One question though, what is nvtv actually used for? What does it do?
According to the description in Synaptic "This is a program to control the TV encoder chips on NVidia cards under
Linux, in order to get tv-out with a wide range of resolutions and
sizes, including "overscan" modes."

Some people said they used nvtv to configure this thing, so where is the difference then configuring it in xorg.conf?
I know that another way to get tv-out to work that is Twinview (you can find a good guide in this forum about it). However I can tell you that (according to my experience) if you play movies on your tv with Twinview they would not be perfect, perhaps there's something wrong with refresh rate but the movies don't seem to run smoothly. I don't know how to explain it better.

Well it seems that with your how-to you get two full-blown desktops, is there a way to get a blank, black screen on the TV, and just display a video from e.g. mplayer/xine on the TV?
Yes, it's possible but it doesn't work for me. The following method is a quotation from the guide which inspired mine:

... we will add small bash feature, which will let us to run players on second screen easly.
Do following in terminal:

sudo gedit /etc/bash.bashrc
Add following section on end:

tv()
{
if [ "$1" == "" ]; then
echo "usage: tv program name"
else
DISPLAY=:0.1 $1
fi
}

And you will be able to run e.g. Totem on second display by typing in terminal (or ALT+F2 and checked "Run in terminal"):

tv totem movie.avi

Nice feature for Kubuntu users, which will allow them to run movies from context menu. If somebody know trick like this for GNOME, let me know.
Add this entry to:

~/.kde/share/apps/konqueror/servicemenus/nameofyourchoice.desktop

[Desktop Entry]
Actions=PlayOnTV
Encoding=UTF-8
ServiceTypes=video/*

[Desktop Action PlayOnTV]
Exec=mplayer -display localhost:1 %F
Name=Play this movie on TV
Icon=yast_tv

tseliot
December 7th, 2005, 04:52 PM
I managed to remove all errors by renaming "Monitor[0]" to "CRT" and "Monitor[1]" to TV.

I still don't have an image on my TV, though. I suspect the composite-cable is broken: all software appears to be working fine, but the image on my TV is not recognizable and completely distorted.
Please try with another cable and let me know

Knorhaen
December 8th, 2005, 12:24 PM
I've replaced the composite-cable. The distortion is gone, but now the TV-screen stays black. Looking at X's logfile, it ought to be working... I really don't understand what's going on.

(I tried to attach X's logfile, but the forum says it's to big. I don't have any webspace myself...)

tseliot
December 8th, 2005, 03:30 PM
I've replaced the composite-cable. The distortion is gone, but now the TV-screen stays black. Looking at X's logfile, it ought to be working... I really don't understand what's going on.

(I tried to attach X's logfile, but the forum says it's to big. I don't have any webspace myself...)
Do this:
CTRL+ALT+F1
sudo /etc/init.d/gdm stop
startx -- -verbose 5 -logverbose 5

and post the output

(if it doesn't fit the page you can split the output in two posts)

Knorhaen
December 9th, 2005, 04:54 AM
OK, here's part 1 of of Xorg.log:

X Window System Version 6.8.2 (Ubuntu 6.8.2-77 20051010174523 root@vernadsky.buildd)
Release Date: 9 February 2005
X Protocol Version 11, Revision 0, Release 6.8.2
Build Operating System: Linux 2.6.10 i686 [ELF]
Current Operating System: Linux vhe-400113 2.6.12-9-686 #1 Mon Oct 10 13:25:32 BST 2005 i686
Build Date: 10 October 2005
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.6.12-9-686 (buildd@rothera) (gcc version 3.4.5 20050809 (prerelease) (Ubuntu 3.4.4-6ubuntu8)) #1 Mon Oct 10 13:25:32 BST 2005 T
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: Fri Dec 9 10:48:48 2005
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Simple Layout"
(**) |-->Screen "Screen0" (0)
(**) | |-->Monitor "CRT"
(**) | |-->Device "Device0"
(**) |-->Screen "Screen1" (1)
(**) | |-->Monitor "TV"
(**) | |-->Device "Device1"
(**) |-->Input Device "Configured Mouse"
(**) |-->Input Device "Generic Keyboard"
(WW) The directory "/usr/share/X11/fonts/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/CID" does not exist.
Entry deleted from font path.
(WW) `fonts.dir' not found (or not valid) in "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID".
Entry deleted from font path.
(Run 'mkfontdir' on "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID").
(**) FontPath set to "/usr/share/X11/fonts/misc,/usr/share/X11/fonts/100dpi/:unscaled,/usr/share/X11/fonts/75dpi/:unscaled,/usr/share/X11/fonts/Type1,/usr/share/X11/fonts/100dpi,/usr/share/X11/fonts/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
(==) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.7
X.Org XInput driver : 0.4
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,7190 card 0000,0000 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,7191 card 0000,0000 rev 03 class 06,04,00 hdr 01
(II) PCI: 00:02:0: chip 8086,7110 card 0000,0000 rev 02 class 06,01,00 hdr 80
(II) PCI: 00:02:1: chip 8086,7111 card 0000,0000 rev 01 class 01,01,80 hdr 00
(II) PCI: 00:02:2: chip 8086,7112 card 0000,0000 rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:02:3: chip 8086,7113 card 0000,0000 rev 02 class 06,80,00 hdr 00
(II) PCI: 00:0e:0: chip 13f6,0111 card 153b,1144 rev 10 class 04,01,00 hdr 00
(II) PCI: 00:10:0: chip 10b7,9004 card 10b7,9004 rev 04 class 02,00,00 hdr 00
(II) PCI: 00:11:0: chip 104c,8400 card 1186,3b01 rev 00 class 02,80,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0110 card 1554,1081 rev a1 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), 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]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0088 (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xdc000000 - 0xddffffff (0x2000000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:2:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV11 [GeForce2 MX/MX 400] rev 161, Mem @ 0xdc000000/24, 0xd0000000/27
(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 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xd8000000 from 0xdbffffff to 0xd7ffffff
(II) Active PCI resource ranges:
[0] -1 0 0xdf000000 - 0xdf00ffff (0x10000) MX[B]
[1] -1 0 0xdf010000 - 0xdf010fff (0x1000) MX[B]
[2] -1 0 0xdf011000 - 0xdf01107f (0x80) MX[B]
[3] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[4] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[5] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[6] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[7] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[8] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[9] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[10] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xdf000000 - 0xdf00ffff (0x10000) MX[B]
[1] -1 0 0xdf010000 - 0xdf010fff (0x1000) MX[B]
[2] -1 0 0xdf011000 - 0xdf01107f (0x80) MX[B]
[3] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[4] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[5] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[6] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[7] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[8] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[9] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[10] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xdf000000 - 0xdf00ffff (0x10000) MX[B]
[6] -1 0 0xdf010000 - 0xdf010fff (0x1000) MX[B]
[7] -1 0 0xdf011000 - 0xdf01107f (0x80) MX[B]
[8] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[9] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[10] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[11] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[12] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[13] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[14] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[15] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[16] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[17] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
(II) LoadModule: "bitmap"
(II) Reloading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Loading font Bitmap
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(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/X11R6/lib/modules/fonts/libfreetype.a
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
compiled for 6.8.2, module version = 2.1.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.7667
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.a
(II) Module record: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.13.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.2
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "vbe"
(II) Loading /usr/X11R6/lib/modules/libvbe.a
(II) Module vbe: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.1.0
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "nvidia"
(II) Loading /usr/X11R6/lib/modules/drivers/nvidia_drv.o
(II) Module nvidia: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.7667
Module class: XFree86 Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.4
(II) LoadModule: "kbd"
(II) Loading /usr/X11R6/lib/modules/input/kbd_drv.o
(II) Module kbd: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.4
(II) NVIDIA X Driver 1.0-7667 Fri Jun 17 07:03:12 PDT 2005
(II) NVIDIA Unified Driver for all NVIDIA GPUs
(II) Primary Device is: PCI 01:00:0
(--) Chipset NVIDIA GPU found
(--) Chipset NVIDIA GPU found
(II) Found 2 PCI NVIDIA devices
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xdf000000 - 0xdf00ffff (0x10000) MX[B]
[6] -1 0 0xdf010000 - 0xdf010fff (0x1000) MX[B]
[7] -1 0 0xdf011000 - 0xdf01107f (0x80) MX[B]
[8] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[9] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[10] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[11] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[12] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[13] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[14] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[15] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[16] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[17] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
(II) NVIDIA(1): Sharing PCI entity with Screen 0
(II) resource ranges after probing:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xdf000000 - 0xdf00ffff (0x10000) MX[B]
[6] -1 0 0xdf010000 - 0xdf010fff (0x1000) MX[B]
[7] -1 0 0xdf011000 - 0xdf01107f (0x80) MX[B]
[8] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[9] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[10] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[11] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[12] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[13] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[15] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[16] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[17] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[18] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[19] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[20] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
[21] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[22] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Setting vga for screen 1.
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(**) NVIDIA(0): Using gamma correction (1.2, 1.2, 1.2)
(**) NVIDIA(0): Option "HWcursor" "true"
(**) NVIDIA(0): Option "ConnectedMonitor" "CRT"
(**) NVIDIA(0): Using HW cursor
(==) NVIDIA(0): Video key set to default value of 0x101fe
(**) NVIDIA(0): ConnectedMonitor string: "CRT"
(--) NVIDIA(0): Linear framebuffer at 0xD0000000
(--) NVIDIA(0): MMIO registers at 0xDC000000
(--) NVIDIA(0): Found 2 CRTCs on board
(II) NVIDIA(0): Supported display device(s): CRT-0, CRT-1, DFP-0, TV-0
(II) NVIDIA(0): Boot display device(s): CRT-0
(II) NVIDIA(0): NVIDIA GPU detected as: GeForce2 MX/MX 400
(II) NVIDIA(0): Chip Architecture: 0x10
(II) NVIDIA(0): Chip Implementation: 0x11
(II) NVIDIA(0): Chip Revision: 0xa1
(--) NVIDIA(0): VideoBIOS: 03.11.00.07.00
(--) NVIDIA(0): Interlaced video modes are not supported on this GPU
(II) NVIDIA(0): Bus detected as AGP
(II) NVIDIA(0): Detected AGP rate: 2X
(--) NVIDIA(0): VideoRAM: 32768 kBytes
(II) NVIDIA(0): Using ConnectedMonitor string "CRT-0"
(II) NVIDIA(0): Enabled display device(s): CRT-0
(II) NVIDIA(0): Mapping display device 0 (CRT-0) to CRTC 0
(--) NVIDIA(0): CRT-0: maximum pixel clock: 350 MHz
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Reloading /usr/X11R6/lib/modules/libddc.a
(II) NVIDIA(0): --- EDID Information for display device CRT-0 ---
(II) NVIDIA(0): Manufacturer: AOC Model: a785 Serial#: 17140
(II) NVIDIA(0): Year: 2000 Week: 27
(II) NVIDIA(0): EDID Version: 1.2
(II) NVIDIA(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V
(II) NVIDIA(0): Sync: Separate
(II) NVIDIA(0): Max H-Image Size [cm]: horiz.: 32 vert.: 24
(II) NVIDIA(0): Gamma: 2.20
(II) NVIDIA(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
(II) NVIDIA(0): First detailed timing is preferred mode
(II) NVIDIA(0): redX: 0.626 redY: 0.340 greenX: 0.288 greenY: 0.608
(II) NVIDIA(0): blueX: 0.148 blueY: 0.064 whiteX: 0.283 whiteY: 0.298
(II) NVIDIA(0): Supported VESA Video Modes:
(II) NVIDIA(0): 720x400@70Hz
(II) NVIDIA(0): 640x480@60Hz
(II) NVIDIA(0): 640x480@75Hz
(II) NVIDIA(0): 800x600@75Hz
(II) NVIDIA(0): 1024x768@75Hz
(II) NVIDIA(0): Manufacturer's mask: 0
(II) NVIDIA(0): Supported Future Video Modes:
(II) NVIDIA(0): #0: hsize: 640 vsize 480 refresh: 85 vid: 22833
(II) NVIDIA(0): #1: hsize: 800 vsize 600 refresh: 85 vid: 22853
(II) NVIDIA(0): #2: hsize: 1024 vsize 768 refresh: 85 vid: 22881
(II) NVIDIA(0): #3: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
(II) NVIDIA(0): #4: hsize: 1280 vsize 1024 refresh: 75 vid: 36737
(II) NVIDIA(0): Supported additional Video Mode:
(II) NVIDIA(0): clock: 135.0 MHz Image Size: 300 x 230 mm
(II) NVIDIA(0): h_active: 1280 h_sync: 1296 h_sync_end 1440 h_blank_end 1688 h_border: 0
(II) NVIDIA(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
(II) NVIDIA(0): Serial No: YESA017140
(II) NVIDIA(0): Ranges: V min: 50 V max: 160 Hz, H min: 30 H max: 85 kHz, PixClock max 160 MHz
(II) NVIDIA(0): Monitor name: C787
(II) NVIDIA(0): --- End of EDID Information for display device CRT-0 ---
(II) NVIDIA(0): EDID reported maximum dimensions for display device CRT-0:
(II) NVIDIA(0): width : 1600
(II) NVIDIA(0): height : 1200
(II) NVIDIA(0): Processing requested modes for display device CRT-0:
(II) NVIDIA(0): "1024x768"
(II) NVIDIA(0): "800x600"
(II) NVIDIA(0): "640x480"
(II) NVIDIA(0): CRT: Using hsync range of 30.00-85.00 kHz
(II) NVIDIA(0): CRT: Using vrefresh range of 50.00-160.00 Hz
(II) NVIDIA(0): Clock range: 12.00 to 350.00 MHz
(II) NVIDIA(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "1280x960" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x1024" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x512" (hsync out of range)
(WW) (1600x1200,CRT) mode clock 162MHz exceeds DDC maximum 160MHz
(WW) (1600x1200,CRT) mode clock 175.5MHz exceeds DDC maximum 160MHz
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(WW) (1792x1344,CRT) mode clock 204.8MHz exceeds DDC maximum 160MHz
(II) NVIDIA(0): Not using default mode "1792x1344" (hsync out of range)
(II) NVIDIA(0): Not using default mode "896x672" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1856x1392" (hsync out of range)
(II) NVIDIA(0): Not using default mode "928x696" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1856x1392" (hsync out of range)
(II) NVIDIA(0): Not using default mode "928x696" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1400x1050" (hsync out of range)
(II) NVIDIA(0): Not using default mode "700x525" (hsync out of range)
(WW) (1920x1200,CRT) mode clock 193.16MHz exceeds DDC maximum 160MHz
(II) NVIDIA(0): Not using default mode "1920x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(0): Not using default mode "2048x1536" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "2048x1536" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1792x1344" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1920x1200" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1680x1050" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x1024" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x1024" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1440x900" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x960" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x800" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1152x864" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1152x864" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x768" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1152x768" (width too large for virtual size)
(WW) NVIDIA(0): Not using mode "896x672" (height 1344 is larger than
(WW) NVIDIA(0): EDID-specified maximum 1200)
(WW) NVIDIA(0): Not using mode "576x384":
(WW) NVIDIA(0): horizontal sync start (589) not a multiple of 8
(WW) NVIDIA(0): Not using mode "360x200":
(WW) NVIDIA(0): horizontal sync start (378) not a multiple of 8
(**) NVIDIA(0): Validated modes for display device CRT-0:
(**) NVIDIA(0): Default mode "1024x768": 94.5 MHz, 68.7 kHz, 85.0 Hz
(**) NVIDIA(0): Default mode "800x600": 56.3 MHz, 53.7 kHz, 85.1 Hz
(**) NVIDIA(0): Default mode "640x480": 36.0 MHz, 43.3 kHz, 85.0 Hz
(**) NVIDIA(0): Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz
(**) NVIDIA(0): Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz
(**) NVIDIA(0): Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz
(**) NVIDIA(0): Default mode "960x600": 96.6 MHz, 74.5 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "832x624": 57.3 MHz, 49.7 kHz, 74.6 Hz
(**) NVIDIA(0): Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz
(**) NVIDIA(0): Default mode "800x600": 50.0 MHz, 48.1 kHz, 72.2 Hz
(**) NVIDIA(0): Default mode "800x600": 87.8 MHz, 81.2 kHz, 65.0 Hz (D)
(**) NVIDIA(0): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
(**) NVIDIA(0): Default mode "800x600": 81.0 MHz, 75.0 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz
(**) NVIDIA(0): Default mode "840x525": 73.6 MHz, 65.2 kHz, 60.1 Hz (D)
(**) NVIDIA(0): Default mode "700x525": 77.9 MHz, 81.5 kHz, 74.8 Hz (D)
(**) NVIDIA(0): Default mode "700x525": 75.5 MHz, 77.0 kHz, 70.0 Hz (D)
(**) NVIDIA(0): Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "640x512": 67.5 MHz, 80.0 kHz, 75.0 Hz (D)
(**) NVIDIA(0): Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "720x450": 54.4 MHz, 56.9 kHz, 60.2 Hz (D)
(**) NVIDIA(0): Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz
(**) NVIDIA(0): Default mode "640x480": 31.5 MHz, 37.9 kHz, 72.8 Hz
(**) NVIDIA(0): Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz
(**) NVIDIA(0): Default mode "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "720x400": 35.5 MHz, 37.9 kHz, 85.0 Hz
(**) NVIDIA(0): Default mode "640x400": 31.5 MHz, 37.9 kHz, 85.1 Hz
(**) NVIDIA(0): Default mode "640x400": 41.7 MHz, 49.7 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "576x432": 60.8 MHz, 77.5 kHz, 85.2 Hz (D)
(**) NVIDIA(0): Default mode "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D)
(**) NVIDIA(0): Default mode "640x384": 40.1 MHz, 47.7 kHz, 60.1 Hz (D)
(**) NVIDIA(0): Default mode "640x350": 31.5 MHz, 37.9 kHz, 85.1 Hz
(**) NVIDIA(0): Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D)
(**) NVIDIA(0): Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D)
(**) NVIDIA(0): Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D)
(**) NVIDIA(0): Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 18.0 MHz, 35.2 kHz, 56.3 Hz (D)
(**) NVIDIA(0): Default mode "320x240": 18.0 MHz, 43.3 kHz, 85.2 Hz (D)
(**) NVIDIA(0): Default mode "320x240": 15.8 MHz, 37.5 kHz, 75.0 Hz (D)
(**) NVIDIA(0): Default mode "320x240": 15.8 MHz, 37.9 kHz, 72.8 Hz (D)
(**) NVIDIA(0): Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D)
(**) NVIDIA(0): Default mode "320x200": 15.8 MHz, 37.9 kHz, 85.3 Hz (D)
(**) NVIDIA(0): Default mode "320x175": 15.8 MHz, 37.9 kHz, 85.3 Hz (D)
(II) NVIDIA(0): Virtual screen size determined to be 1024 x 768
(--) NVIDIA(0): Display dimensions: (320, 240) mm
(--) NVIDIA(0): DPI set to (81, 81)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
Skipping "/usr/X11R6/lib/modules/libfb.a:fbmmx.o": No symbols found
(II) Module fb: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.2
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="X.Org Foundation"

Knorhaen
December 9th, 2005, 04:55 AM
And part 2:

(**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(1): RGB weight 888
(==) NVIDIA(1): Default visual is TrueColor
(==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(1): Option "ConnectedMonitor" "TV"
(**) NVIDIA(1): Option "TVStandard" "PAL-B"
(**) NVIDIA(1): Option "TVOutFormat" "Composite"
(==) NVIDIA(1): Using HW cursor
(**) NVIDIA(1): Forcing COMPOSITE video output
(==) NVIDIA(1): Video key set to default value of 0x101fe
(**) NVIDIA(1): ConnectedMonitor string: "TV"
(**) NVIDIA(1): TV Standard string: "PAL-B"
(--) NVIDIA(1): Linear framebuffer at 0xD0000000
(--) NVIDIA(1): MMIO registers at 0xDC000000
(--) NVIDIA(1): Found 2 CRTCs on board
(II) NVIDIA(1): Supported display device(s): CRT-0, CRT-1, DFP-0, TV-0
(II) NVIDIA(1): Boot display device(s): CRT-0
(II) NVIDIA(1): NVIDIA GPU detected as: GeForce2 MX/MX 400
(II) NVIDIA(1): Chip Architecture: 0x10
(II) NVIDIA(1): Chip Implementation: 0x11
(II) NVIDIA(1): Chip Revision: 0xa1
(--) NVIDIA(1): VideoBIOS: 03.11.00.07.00
(--) NVIDIA(1): Interlaced video modes are not supported on this GPU
(II) NVIDIA(1): Bus detected as AGP
(II) NVIDIA(1): Detected AGP rate: 2X
(--) NVIDIA(1): VideoRAM: 32768 kBytes
(II) NVIDIA(1): Using ConnectedMonitor string "TV-0"
(II) NVIDIA(1): Enabled display device(s): TV-0
(--) NVIDIA(1): Detected TV Encoder: Chrontel 7005
(II) NVIDIA(1): Supported TV modes:
(II) NVIDIA(1): TV Standard: NTSC-M: 320x200
(II) NVIDIA(1): TV Standard: NTSC-M: 320x240
(II) NVIDIA(1): TV Standard: NTSC-M: 400x300
(II) NVIDIA(1): TV Standard: NTSC-M: 640x400
(II) NVIDIA(1): TV Standard: NTSC-M: 640x480
(II) NVIDIA(1): TV Standard: NTSC-M: 720x480
(II) NVIDIA(1): TV Standard: NTSC-M: 800x600
(II) NVIDIA(1): TV Standard: NTSC-M: 1024x768
(II) NVIDIA(1): TV Standard: NTSC-J: 320x200
(II) NVIDIA(1): TV Standard: NTSC-J: 320x240
(II) NVIDIA(1): TV Standard: NTSC-J: 400x300
(II) NVIDIA(1): TV Standard: NTSC-J: 640x400
(II) NVIDIA(1): TV Standard: NTSC-J: 640x480
(II) NVIDIA(1): TV Standard: NTSC-J: 720x480
(II) NVIDIA(1): TV Standard: NTSC-J: 800x600
(II) NVIDIA(1): TV Standard: NTSC-J: 1024x768
(II) NVIDIA(1): TV Standard: PAL-M: 320x200
(II) NVIDIA(1): TV Standard: PAL-M: 320x240
(II) NVIDIA(1): TV Standard: PAL-M: 400x300
(II) NVIDIA(1): TV Standard: PAL-M: 640x400
(II) NVIDIA(1): TV Standard: PAL-M: 640x480
(II) NVIDIA(1): TV Standard: PAL-M: 720x480
(II) NVIDIA(1): TV Standard: PAL-M: 800x600
(II) NVIDIA(1): TV Standard: PAL-M: 1024x768
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 320x200
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 320x240
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 400x300
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 640x400
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 640x480
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 720x576
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 800x600
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 1024x768
(II) NVIDIA(1): TV Standard: PAL-N: 320x200
(II) NVIDIA(1): TV Standard: PAL-N: 320x240
(II) NVIDIA(1): TV Standard: PAL-N: 400x300
(II) NVIDIA(1): TV Standard: PAL-N: 640x400
(II) NVIDIA(1): TV Standard: PAL-N: 640x480
(II) NVIDIA(1): TV Standard: PAL-N: 720x576
(II) NVIDIA(1): TV Standard: PAL-N: 800x600
(II) NVIDIA(1): TV Standard: PAL-N: 1024x768
(II) NVIDIA(1): TV Standard: PAL-NC: 320x200
(II) NVIDIA(1): TV Standard: PAL-NC: 320x240
(II) NVIDIA(1): TV Standard: PAL-NC: 400x300
(II) NVIDIA(1): TV Standard: PAL-NC: 640x400
(II) NVIDIA(1): TV Standard: PAL-NC: 640x480
(II) NVIDIA(1): TV Standard: PAL-NC: 720x576
(II) NVIDIA(1): TV Standard: PAL-NC: 800x600
(II) NVIDIA(1): TV Standard: PAL-NC: 1024x768
(II) NVIDIA(1): Mapping display device 0 (TV-0) to CRTC 1
(--) NVIDIA(1): TV-0: maximum pixel clock: 650 MHz
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Reloading /usr/X11R6/lib/modules/libddc.a
(II) NVIDIA(1): TVs do not provide EDIDs; skipping EDID probe on TV-0
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/X11R6/lib/modules/linux/libint10.a
(II) NVIDIA(0): Primary V_BIOS segment is: 0xc000
(II) NVIDIA(1): Saved console TV mode: 3
(II) NVIDIA(1): Processing requested modes for display device TV-0:
(II) NVIDIA(1): "1024x768"
(II) NVIDIA(1): TV: Using hsync range of 30.00-50.00 kHz
(II) NVIDIA(1): TV: Using vrefresh value of 60.00 Hz
(II) NVIDIA(1): Clock range: 12.00 to 650.00 MHz
(II) NVIDIA(1): Not using default mode "640x350" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "320x175" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "640x400" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "320x200" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "720x400" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "360x200" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(1): Not using default mode "400x300" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) NVIDIA(1): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) NVIDIA(1): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(1): Not using default mode "512x384" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(1): Not using default mode "512x384" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(1): Not using default mode "512x384" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1152x864" (hsync out of range)
(II) NVIDIA(1): Not using default mode "576x432" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1280x960" (hsync out of range)
(II) NVIDIA(1): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1280x960" (hsync out of range)
(II) NVIDIA(1): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1280x1024" (hsync out of range)
(II) NVIDIA(1): Not using default mode "640x512" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1280x1024" (hsync out of range)
(II) NVIDIA(1): Not using default mode "640x512" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1280x1024" (hsync out of range)
(II) NVIDIA(1): Not using default mode "640x512" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(1): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(1): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(1): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(1): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(1): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1792x1344" (hsync out of range)
(II) NVIDIA(1): Not using default mode "896x672" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1792x1344" (hsync out of range)
(II) NVIDIA(1): Not using default mode "896x672" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1856x1392" (hsync out of range)
(II) NVIDIA(1): Not using default mode "928x696" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1856x1392" (hsync out of range)
(II) NVIDIA(1): Not using default mode "928x696" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(1): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(1): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(1): Not using default mode "832x624" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "416x312" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "1152x768" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "576x384" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "1152x864" (hsync out of range)
(II) NVIDIA(1): Not using default mode "576x432" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1400x1050" (hsync out of range)
(II) NVIDIA(1): Not using default mode "700x525" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1400x1050" (hsync out of range)
(II) NVIDIA(1): Not using default mode "700x525" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1400x1050" (hsync out of range)
(II) NVIDIA(1): Not using default mode "700x525" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1400x1050" (hsync out of range)
(II) NVIDIA(1): Not using default mode "700x525" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1440x900" (hsync out of range)
(II) NVIDIA(1): Not using default mode "720x450" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1600x1024" (hsync out of range)
(II) NVIDIA(1): Not using default mode "800x512" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1680x1050" (hsync out of range)
(II) NVIDIA(1): Not using default mode "840x525" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1920x1200" (hsync out of range)
(II) NVIDIA(1): Not using default mode "960x600" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1920x1200" (hsync out of range)
(II) NVIDIA(1): Not using default mode "960x600" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(1): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(1): Not using default mode "2048x1536" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(1): Not using default mode "2048x1536" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(1): Not using default mode "2048x1536" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1280x800" (width too large for virtual size)
(II) NVIDIA(1): Not using default mode "1280x768" (width too large for virtual size)
(WW) NVIDIA(1): Not using mode "640x384" (not a valid TV mode)
(WW) NVIDIA(1): Not using mode "512x384" (not a valid TV mode)
(**) NVIDIA(1): Validated modes for display device TV-0:
(**) NVIDIA(1): Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz
(**) NVIDIA(1): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
(**) NVIDIA(1): Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz
(**) NVIDIA(1): Default mode "640x400": 41.7 MHz, 49.7 kHz, 60.0 Hz (D)
(**) NVIDIA(1): Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(**) NVIDIA(1): Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D)
(II) NVIDIA(1): Virtual screen size determined to be 1024 x 768
(==) NVIDIA(1): DPI set to (75, 75)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Reloading /usr/X11R6/lib/modules/libfb.a
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Reloading /usr/X11R6/lib/modules/libramdac.a
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? Yes, I do.
(II) LoadModule: "rac"
(II) Loading /usr/X11R6/lib/modules/librac.a
(II) Module rac: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(II) resource ranges after preInit:
[0] 0 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
[1] 0 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B]
[2] 0 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
[3] 0 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B]
[4] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[5] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[6] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[7] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[8] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[9] -1 0 0xdf000000 - 0xdf00ffff (0x10000) MX[B]
[10] -1 0 0xdf010000 - 0xdf010fff (0x1000) MX[B]
[11] -1 0 0xdf011000 - 0xdf01107f (0x80) MX[B]
[12] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[13] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[14] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[15] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
[16] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
[17] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
[18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[19] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[20] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[21] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[22] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[23] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[24] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
[25] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
[26] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(II) NVIDIA(0): Memory mapped
(II) NVIDIA(0): kernel module enabled successfully
(II) NVIDIA(0): Interrupts enabled
(II) NVIDIA(0): No MetaMode found for mode "1024x768"
(II) NVIDIA(0): Setting mode "1024x768"
(II) NVIDIA(0): First mode initialized
(II) Loading extension NV-GLX
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Visuals set up
(II) NVIDIA(0): Pixmap depths set up
(II) NVIDIA(0): GLX visuals set up
(II) NVIDIA(0): Framebuffer set up
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(0): Backing store disabled
(==) NVIDIA(0): Silken mouse enabled
(II) NVIDIA(0): Default colormap initialized.
(II) NVIDIA(0): Palette loaded
(**) Option "dpms"
(**) NVIDIA(0): DPMS enabled
(II) Loading extension NV-CONTROL
(II) NVIDIA(0): Screen initialization complete
(==) RandR enabled
(II) NVIDIA(1): Memory mapped
(II) NVIDIA(1): Not allocating video overlay for second X screen sharing this
(II) NVIDIA(1): GPU
(II) NVIDIA(1): Not allocating external video decoder object
(II) NVIDIA(1): kernel module enabled successfully
(II) NVIDIA(1): Interrupts enabled
(II) NVIDIA(1): No MetaMode found for mode "1024x768"
(II) NVIDIA(1): Setting mode "1024x768"
(II) NVIDIA(1): First mode initialized
(II) NVIDIA(1): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(1): Visuals set up
(II) NVIDIA(1): Pixmap depths set up
(II) NVIDIA(1): GLX visuals set up
(II) NVIDIA(1): Framebuffer set up
(II) NVIDIA(1): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(1): Backing store disabled
(==) NVIDIA(1): Silken mouse enabled
(II) NVIDIA(1): Default colormap initialized.
(II) NVIDIA(1): Palette loaded
(II) NVIDIA(1): Screen initialization complete
(==) RandR enabled
(II) Entity 0 shares no resources
(II) Entity 1 shares no resources
(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 LBX
(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
(**) Option "Protocol" "ImPS/2"
(**) Configured Mouse: Device: "/dev/input/mice"
(**) Configured Mouse: Protocol: "ImPS/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: 5
(**) Option "CoreKeyboard"
(**) Generic Keyboard: Core Keyboard
(**) Option "Protocol" "standard"
(**) 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 "CustomKeycodes" "off"
(**) Generic Keyboard: CustomKeycodes disabled
(II) XINPUT: Adding extended input device "Generic Keyboard" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(**) Option "Device" "/dev/input/mice"
(II) Configured Mouse: ps2EnableDataReporting: succeeded
Warning: font renderer for ".pcf" already registered at priority 0
Warning: font renderer for ".pcf.Z" already registered at priority 0
Warning: font renderer for ".pcf.gz" already registered at priority 0
Warning: font renderer for ".snf" already registered at priority 0
Warning: font renderer for ".snf.Z" already registered at priority 0
Warning: font renderer for ".snf.gz" already registered at priority 0
Warning: font renderer for ".bdf" already registered at priority 0
Warning: font renderer for ".bdf.Z" already registered at priority 0
Warning: font renderer for ".bdf.gz" already registered at priority 0
Warning: font renderer for ".pmf" already registered at priority 0
(II) Screen 0 shares mem & io resources
(II) Screen 1 shares mem & io resources
(II) Screen 0 shares mem & io resources
(II) Screen 1 shares mem & io resources

tseliot
December 9th, 2005, 06:11 AM
And part 2:

Ok, Add this option in the "Section Device" of your xorg.conf:
Option "IgnoreEDID" "True"
Then log out and press CTRL+ALT+BACKSPACE

If this doesn't solve the problem try this:
press CTRL+ALT+F1
type "sudo /etc/init.d/gdm stop" OR (if you use KDE) "sudo /etc/init.d/kdm stop"
then "startx -- -verbose 5 -logverbose 5"

and post the output

Tell me how it goes

Knorhaen
December 9th, 2005, 07:19 AM
That had no noticable effect (I added the line to both "Dervice" sections, BTW).

X's logfile, part 1:


X Window System Version 6.8.2 (Ubuntu 6.8.2-77 20051010174523 root@vernadsky.buildd)
Release Date: 9 February 2005
X Protocol Version 11, Revision 0, Release 6.8.2
Build Operating System: Linux 2.6.10 i686 [ELF]
Current Operating System: Linux vhe-400113 2.6.12-9-686 #1 Mon Oct 10 13:25:32 BST 2005 i686
Build Date: 10 October 2005
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.6.12-9-686 (buildd@rothera) (gcc version 3.4.5 20050809 (prerelease) (Ubuntu 3.4.4-6ubuntu8)) #1 Mon Oct 10 13:25:32 BST 2005 T
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: Fri Dec 9 13:13:04 2005
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Simple Layout"
(**) |-->Screen "Screen0" (0)
(**) | |-->Monitor "CRT"
(**) | |-->Device "Device0"
(**) |-->Screen "Screen1" (1)
(**) | |-->Monitor "TV"
(**) | |-->Device "Device1"
(**) |-->Input Device "Configured Mouse"
(**) |-->Input Device "Generic Keyboard"
(WW) The directory "/usr/share/X11/fonts/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/CID" does not exist.
Entry deleted from font path.
(WW) `fonts.dir' not found (or not valid) in "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID".
Entry deleted from font path.
(Run 'mkfontdir' on "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID").
(**) FontPath set to "/usr/share/X11/fonts/misc,/usr/share/X11/fonts/100dpi/:unscaled,/usr/share/X11/fonts/75dpi/:unscaled,/usr/share/X11/fonts/Type1,/usr/share/X11/fonts/100dpi,/usr/share/X11/fonts/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
(==) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.7
X.Org XInput driver : 0.4
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,7190 card 0000,0000 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,7191 card 0000,0000 rev 03 class 06,04,00 hdr 01
(II) PCI: 00:02:0: chip 8086,7110 card 0000,0000 rev 02 class 06,01,00 hdr 80
(II) PCI: 00:02:1: chip 8086,7111 card 0000,0000 rev 01 class 01,01,80 hdr 00
(II) PCI: 00:02:2: chip 8086,7112 card 0000,0000 rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:02:3: chip 8086,7113 card 0000,0000 rev 02 class 06,80,00 hdr 00
(II) PCI: 00:0e:0: chip 13f6,0111 card 153b,1144 rev 10 class 04,01,00 hdr 00
(II) PCI: 00:10:0: chip 10b7,9004 card 10b7,9004 rev 04 class 02,00,00 hdr 00
(II) PCI: 00:11:0: chip 104c,8400 card 1186,3b01 rev 00 class 02,80,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0110 card 1554,1081 rev a1 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), 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]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0088 (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xdc000000 - 0xddffffff (0x2000000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:2:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV11 [GeForce2 MX/MX 400] rev 161, Mem @ 0xdc000000/24, 0xd0000000/27
(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 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xd8000000 from 0xdbffffff to 0xd7ffffff
(II) Active PCI resource ranges:
[0] -1 0 0xdf000000 - 0xdf00ffff (0x10000) MX[B]
[1] -1 0 0xdf010000 - 0xdf010fff (0x1000) MX[B]
[2] -1 0 0xdf011000 - 0xdf01107f (0x80) MX[B]
[3] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[4] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[5] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[6] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[7] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[8] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[9] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[10] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xdf000000 - 0xdf00ffff (0x10000) MX[B]
[1] -1 0 0xdf010000 - 0xdf010fff (0x1000) MX[B]
[2] -1 0 0xdf011000 - 0xdf01107f (0x80) MX[B]
[3] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[4] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[5] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[6] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[7] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[8] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[9] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[10] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xdf000000 - 0xdf00ffff (0x10000) MX[B]
[6] -1 0 0xdf010000 - 0xdf010fff (0x1000) MX[B]
[7] -1 0 0xdf011000 - 0xdf01107f (0x80) MX[B]
[8] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[9] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[10] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[11] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[12] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[13] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[14] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[15] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[16] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[17] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
(II) LoadModule: "bitmap"
(II) Reloading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Loading font Bitmap
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(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/X11R6/lib/modules/fonts/libfreetype.a
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
compiled for 6.8.2, module version = 2.1.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.7667
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.a
(II) Module record: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.13.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.2
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "vbe"
(II) Loading /usr/X11R6/lib/modules/libvbe.a
(II) Module vbe: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.1.0
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "nvidia"
(II) Loading /usr/X11R6/lib/modules/drivers/nvidia_drv.o
(II) Module nvidia: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.7667
Module class: XFree86 Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.4
(II) LoadModule: "kbd"
(II) Loading /usr/X11R6/lib/modules/input/kbd_drv.o
(II) Module kbd: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.4
(II) NVIDIA X Driver 1.0-7667 Fri Jun 17 07:03:12 PDT 2005
(II) NVIDIA Unified Driver for all NVIDIA GPUs
(II) Primary Device is: PCI 01:00:0
(--) Chipset NVIDIA GPU found
(--) Chipset NVIDIA GPU found
(II) Found 2 PCI NVIDIA devices
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xdf000000 - 0xdf00ffff (0x10000) MX[B]
[6] -1 0 0xdf010000 - 0xdf010fff (0x1000) MX[B]
[7] -1 0 0xdf011000 - 0xdf01107f (0x80) MX[B]
[8] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[9] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[10] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[11] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[12] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[13] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[14] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[15] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[16] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[17] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
(II) NVIDIA(1): Sharing PCI entity with Screen 0
(II) resource ranges after probing:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xdf000000 - 0xdf00ffff (0x10000) MX[B]
[6] -1 0 0xdf010000 - 0xdf010fff (0x1000) MX[B]
[7] -1 0 0xdf011000 - 0xdf01107f (0x80) MX[B]
[8] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[9] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[10] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[11] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[12] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[13] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[15] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[16] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[17] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[18] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[19] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[20] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
[21] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[22] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Setting vga for screen 1.
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(**) NVIDIA(0): Using gamma correction (1.2, 1.2, 1.2)
(**) NVIDIA(0): Option "HWcursor" "true"
(**) NVIDIA(0): Option "IgnoreEDID" "True"
(**) NVIDIA(0): Option "ConnectedMonitor" "CRT"
(**) NVIDIA(0): Using HW cursor
(==) NVIDIA(0): Video key set to default value of 0x101fe
(**) NVIDIA(0): Ignoring EDIDs
(**) NVIDIA(0): ConnectedMonitor string: "CRT"
(--) NVIDIA(0): Linear framebuffer at 0xD0000000
(--) NVIDIA(0): MMIO registers at 0xDC000000
(--) NVIDIA(0): Found 2 CRTCs on board
(II) NVIDIA(0): Supported display device(s): CRT-0, CRT-1, DFP-0, TV-0
(II) NVIDIA(0): Boot display device(s): CRT-0
(II) NVIDIA(0): NVIDIA GPU detected as: GeForce2 MX/MX 400
(II) NVIDIA(0): Chip Architecture: 0x10
(II) NVIDIA(0): Chip Implementation: 0x11
(II) NVIDIA(0): Chip Revision: 0xa1
(--) NVIDIA(0): VideoBIOS: 03.11.00.07.00
(--) NVIDIA(0): Interlaced video modes are not supported on this GPU
(II) NVIDIA(0): Bus detected as AGP
(II) NVIDIA(0): Detected AGP rate: 2X
(--) NVIDIA(0): VideoRAM: 32768 kBytes
(II) NVIDIA(0): Using ConnectedMonitor string "CRT-0"
(II) NVIDIA(0): Enabled display device(s): CRT-0
(II) NVIDIA(0): Mapping display device 0 (CRT-0) to CRTC 0
(--) NVIDIA(0): CRT-0: maximum pixel clock: 350 MHz
(II) NVIDIA(0): Not probing EDIDs.
(II) NVIDIA(0): Processing requested modes for display device CRT-0:
(II) NVIDIA(0): "1024x768"
(II) NVIDIA(0): "800x600"
(II) NVIDIA(0): "640x480"
(II) NVIDIA(0): CRT: Using hsync range of 30.00-85.00 kHz
(II) NVIDIA(0): CRT: Using vrefresh range of 50.00-160.00 Hz
(II) NVIDIA(0): Clock range: 12.00 to 350.00 MHz
(II) NVIDIA(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "1280x960" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x1024" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x512" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1792x1344" (hsync out of range)
(II) NVIDIA(0): Not using default mode "896x672" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1856x1392" (hsync out of range)
(II) NVIDIA(0): Not using default mode "928x696" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1856x1392" (hsync out of range)
(II) NVIDIA(0): Not using default mode "928x696" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1400x1050" (hsync out of range)
(II) NVIDIA(0): Not using default mode "700x525" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1920x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(0): Not using default mode "2048x1536" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "2048x1536" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1792x1344" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1920x1200" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1680x1050" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x1024" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x1024" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1440x900" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x960" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x800" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1152x864" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1152x864" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x768" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1152x768" (width too large for virtual size)
(WW) NVIDIA(0): Not using mode "576x384":
(WW) NVIDIA(0): horizontal sync start (589) not a multiple of 8
(WW) NVIDIA(0): Not using mode "360x200":
(WW) NVIDIA(0): horizontal sync start (378) not a multiple of 8
(**) NVIDIA(0): Validated modes for display device CRT-0:
(**) NVIDIA(0): Default mode "1024x768": 94.5 MHz, 68.7 kHz, 85.0 Hz
(**) NVIDIA(0): Default mode "800x600": 56.3 MHz, 53.7 kHz, 85.1 Hz
(**) NVIDIA(0): Default mode "640x480": 36.0 MHz, 43.3 kHz, 85.0 Hz
(**) NVIDIA(0): Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz
(**) NVIDIA(0): Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz
(**) NVIDIA(0): Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz
(**) NVIDIA(0): Default mode "896x672": 102.4 MHz, 83.7 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "960x600": 96.6 MHz, 74.5 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "832x624": 57.3 MHz, 49.7 kHz, 74.6 Hz
(**) NVIDIA(0): Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz
(**) NVIDIA(0): Default mode "800x600": 50.0 MHz, 48.1 kHz, 72.2 Hz
(**) NVIDIA(0): Default mode "800x600": 87.8 MHz, 81.2 kHz, 65.0 Hz (D)
(**) NVIDIA(0): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
(**) NVIDIA(0): Default mode "800x600": 81.0 MHz, 75.0 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz
(**) NVIDIA(0): Default mode "840x525": 73.6 MHz, 65.2 kHz, 60.1 Hz (D)
(**) NVIDIA(0): Default mode "700x525": 77.9 MHz, 81.5 kHz, 74.8 Hz (D)
(**) NVIDIA(0): Default mode "700x525": 75.5 MHz, 77.0 kHz, 70.0 Hz (D)
(**) NVIDIA(0): Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "640x512": 67.5 MHz, 80.0 kHz, 75.0 Hz (D)
(**) NVIDIA(0): Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "720x450": 54.4 MHz, 56.9 kHz, 60.2 Hz (D)
(**) NVIDIA(0): Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz
(**) NVIDIA(0): Default mode "640x480": 31.5 MHz, 37.9 kHz, 72.8 Hz
(**) NVIDIA(0): Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz
(**) NVIDIA(0): Default mode "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "720x400": 35.5 MHz, 37.9 kHz, 85.0 Hz
(**) NVIDIA(0): Default mode "640x400": 31.5 MHz, 37.9 kHz, 85.1 Hz
(**) NVIDIA(0): Default mode "640x400": 41.7 MHz, 49.7 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "576x432": 60.8 MHz, 77.5 kHz, 85.2 Hz (D)
(**) NVIDIA(0): Default mode "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D)
(**) NVIDIA(0): Default mode "640x384": 40.1 MHz, 47.7 kHz, 60.1 Hz (D)
(**) NVIDIA(0): Default mode "640x350": 31.5 MHz, 37.9 kHz, 85.1 Hz
(**) NVIDIA(0): Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D)
(**) NVIDIA(0): Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D)
(**) NVIDIA(0): Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D)
(**) NVIDIA(0): Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 18.0 MHz, 35.2 kHz, 56.3 Hz (D)
(**) NVIDIA(0): Default mode "320x240": 18.0 MHz, 43.3 kHz, 85.2 Hz (D)
(**) NVIDIA(0): Default mode "320x240": 15.8 MHz, 37.5 kHz, 75.0 Hz (D)
(**) NVIDIA(0): Default mode "320x240": 15.8 MHz, 37.9 kHz, 72.8 Hz (D)
(**) NVIDIA(0): Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D)
(**) NVIDIA(0): Default mode "320x200": 15.8 MHz, 37.9 kHz, 85.3 Hz (D)
(**) NVIDIA(0): Default mode "320x175": 15.8 MHz, 37.9 kHz, 85.3 Hz (D)
(II) NVIDIA(0): Virtual screen size determined to be 1024 x 768
(==) NVIDIA(0): DPI set to (75, 75)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
Skipping "/usr/X11R6/lib/modules/libfb.a:fbmmx.o": No symbols found

Knorhaen
December 9th, 2005, 07:20 AM
Part 2:

(II) Module fb: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.2
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.7
(**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(1): RGB weight 888
(==) NVIDIA(1): Default visual is TrueColor
(==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(1): Option "IgnoreEDID" "True"
(**) NVIDIA(1): Option "ConnectedMonitor" "TV"
(**) NVIDIA(1): Option "TVStandard" "PAL-B"
(**) NVIDIA(1): Option "TVOutFormat" "Composite"
(==) NVIDIA(1): Using HW cursor
(**) NVIDIA(1): Forcing COMPOSITE video output
(==) NVIDIA(1): Video key set to default value of 0x101fe
(**) NVIDIA(1): Ignoring EDIDs
(**) NVIDIA(1): ConnectedMonitor string: "TV"
(**) NVIDIA(1): TV Standard string: "PAL-B"
(--) NVIDIA(1): Linear framebuffer at 0xD0000000
(--) NVIDIA(1): MMIO registers at 0xDC000000
(--) NVIDIA(1): Found 2 CRTCs on board
(II) NVIDIA(1): Supported display device(s): CRT-0, CRT-1, DFP-0, TV-0
(II) NVIDIA(1): Boot display device(s): CRT-0
(II) NVIDIA(1): NVIDIA GPU detected as: GeForce2 MX/MX 400
(II) NVIDIA(1): Chip Architecture: 0x10
(II) NVIDIA(1): Chip Implementation: 0x11
(II) NVIDIA(1): Chip Revision: 0xa1
(--) NVIDIA(1): VideoBIOS: 03.11.00.07.00
(--) NVIDIA(1): Interlaced video modes are not supported on this GPU
(II) NVIDIA(1): Bus detected as AGP
(II) NVIDIA(1): Detected AGP rate: 2X
(--) NVIDIA(1): VideoRAM: 32768 kBytes
(II) NVIDIA(1): Using ConnectedMonitor string "TV-0"
(II) NVIDIA(1): Enabled display device(s): TV-0
(--) NVIDIA(1): Detected TV Encoder: Chrontel 7005
(II) NVIDIA(1): Supported TV modes:
(II) NVIDIA(1): TV Standard: NTSC-M: 320x200
(II) NVIDIA(1): TV Standard: NTSC-M: 320x240
(II) NVIDIA(1): TV Standard: NTSC-M: 400x300
(II) NVIDIA(1): TV Standard: NTSC-M: 640x400
(II) NVIDIA(1): TV Standard: NTSC-M: 640x480
(II) NVIDIA(1): TV Standard: NTSC-M: 720x480
(II) NVIDIA(1): TV Standard: NTSC-M: 800x600
(II) NVIDIA(1): TV Standard: NTSC-M: 1024x768
(II) NVIDIA(1): TV Standard: NTSC-J: 320x200
(II) NVIDIA(1): TV Standard: NTSC-J: 320x240
(II) NVIDIA(1): TV Standard: NTSC-J: 400x300
(II) NVIDIA(1): TV Standard: NTSC-J: 640x400
(II) NVIDIA(1): TV Standard: NTSC-J: 640x480
(II) NVIDIA(1): TV Standard: NTSC-J: 720x480
(II) NVIDIA(1): TV Standard: NTSC-J: 800x600
(II) NVIDIA(1): TV Standard: NTSC-J: 1024x768
(II) NVIDIA(1): TV Standard: PAL-M: 320x200
(II) NVIDIA(1): TV Standard: PAL-M: 320x240
(II) NVIDIA(1): TV Standard: PAL-M: 400x300
(II) NVIDIA(1): TV Standard: PAL-M: 640x400
(II) NVIDIA(1): TV Standard: PAL-M: 640x480
(II) NVIDIA(1): TV Standard: PAL-M: 720x480
(II) NVIDIA(1): TV Standard: PAL-M: 800x600
(II) NVIDIA(1): TV Standard: PAL-M: 1024x768
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 320x200
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 320x240
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 400x300
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 640x400
(II) NVIDIA(1): TV Standard: PAL-BDGHI: 640x480
(II) NVIDIA(1): TV Standard: PAL-BD