PDA

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


Pages : [1] 2

tseliot
December 3rd, 2005, 11: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, 05: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, 06: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, 11: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, 11: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, 11: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 6th, 2005, 12:34 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! :)

tseliot
December 6th, 2005, 09: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, 10: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, 10: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, 10:49 AM
I've attached my xorg.conf to this message.

misse-
December 6th, 2005, 01: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, 01: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, 01: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, 03: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, 05: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, 07: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, 05: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, 05: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, 05: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, 01: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, 04: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, 05: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, 05: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, 07: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, 08: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, 08: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-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) NVIDIA(1): Not probing EDIDs.
(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, 08:39 AM
Part 2:

Please put a space (a blank line) between a section and the next one. For example:
Section "Monitor"
Identifier "Monitor[0]" #CRT
Option "DPMS"
HorizSync 30-85
VertRefresh 50-160
Gamma 1.2 1.2 1.2
EndSection
Section "Monitor"
Identifier "TV" #TV
HorizSync 60
VertRefresh 30-150
EndSection

should be
Section "Monitor"
Identifier "Monitor[0]" #CRT
Option "DPMS"
HorizSync 30-85
VertRefresh 50-160
Gamma 1.2 1.2 1.2
EndSection

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

Do it for all your xorg.conf.

I'll give you further instructions later

Knorhaen
December 9th, 2005, 09:35 AM
Do it for all your xorg.conf.

Done.

tseliot
December 9th, 2005, 10:52 AM
Done.
Everything seems ok in your xorg.conf.
I have some advices for you:
1) Try to switch (with your remote) between the A/V
2) You can see something on your TV only after you log in (in other words you will not be able to see the GDM or KDM login manager)

If those advices don't provide you the solution I apologise. I really can't think because I'm stressed as I'm going to get my degree next wednesday and I'm studying. I hope I can help you better after my degree.

corruption
December 10th, 2005, 01:11 AM
I managed to get it working for myself, by doing as others mentioned and renaming the device names in xorg.conf. The only catch I've run into is I must have the tv on the input channel when I start X otherwise I'm stuck at a black screen on the CRT with no display on the tv. Small consolation for a 2nd desktop on the tv. Thanks!

tseliot
December 10th, 2005, 05:16 AM
I managed to get it working for myself, by doing as others mentioned and renaming the device names in xorg.conf. The only catch I've run into is I must have the tv on the input channel when I start X otherwise I'm stuck at a black screen on the CRT with no display on the tv. Small consolation for a 2nd desktop on the tv. Thanks!
Ok, I'll fix the guide as soon as possible.

corruption
December 10th, 2005, 12:18 PM
One more question... less of an issue, more personal curiosity.. does anyone know a way to set independent desktop backgrounds for each display? The image I use on my desktop, for lack of a better term, 'washes out' on the tv.. that is, the image is kind of blurry, a little distorted, and the colors seem to fluctuate in some spots.. when I've tried less color-intensive images, it looks fine, but I'm locked to the same image on both screens. Any help?

Also, and this one is really purely for the geek factor.. is there any way to start an xscreensaver session on the tv monitor, and leave the desktop monitor usable? This one is more of a pipe dream for myself, but it sure would be cool ;)

polt
December 22nd, 2005, 03:24 AM
How does this all work out on an HDTV? I'm using an nVidia 6600GT card with HDTV output. The TV standard in xorg.conf is set to HD1080i. Output is through an S-video connector to an nVidia adapter that breaks that out into component video. This plugs into the back of the HDTV. It looks REALLY NICE! except that it is a 1024x768 window sitting on a 1920x1080 background. I wish I could figure out how to make the window 1920x1080 (to match the TV) or at least 1600x900 (which nVidia recommends because of 15% overscan on most TVs). Any ideas on how to convince the nVidia drivers to do their thing? (BTW, I have Breezy Badger 5.10 AMD64, fresh install, on an Intel945 board.)

mo_x
December 22nd, 2005, 05:13 AM
refering to original post of tseliot.
The syntax used for the ConnectedMonitor option is incorrect. It is better to not use the ConnectedMonitor option unless you are experiencing problems.
The procedure of setting up multiple X screens is also descriped in the nvidia README that comes with the driver. It also explains al the options you can use in your xorg.conf.
I attached my xorg.conf as an example.

tseliot
December 22nd, 2005, 10:31 AM
How does this all work out on an HDTV? I'm using an nVidia 6600GT card with HDTV output. The TV standard in xorg.conf is set to HD1080i. Output is through an S-video connector to an nVidia adapter that breaks that out into component video. This plugs into the back of the HDTV. It looks REALLY NICE! except that it is a 1024x768 window sitting on a 1920x1080 background. I wish I could figure out how to make the window 1920x1080 (to match the TV) or at least 1600x900 (which nVidia recommends because of 15% overscan on most TVs). Any ideas on how to convince the nVidia drivers to do their thing? (BTW, I have Breezy Badger 5.10 AMD64, fresh install, on an Intel945 board.)
Try to modify the following section of your xorg.conf:
Section "Screen"
Device "Device[1]"
Identifier "Screen[1]"
Monitor "Monitor[1]"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection

And make it look like this:
Section "Screen"
Device "Device[1]"
Identifier "Screen[1]"
Monitor "Monitor[1]"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1920x1080"
EndSubSection
EndSection

Log out and CTRL+ALT+BACKSPACE

OR if it doesn't work have a look at the following guide to set the correct resolution: Howto: change resolution/refresh rate in Xorg (http://ubuntuforums.org/showthread.php?t=83973&highlight=resolution)

tseliot
December 22nd, 2005, 10:43 AM
refering to original post of tseliot.
The syntax used for the ConnectedMonitor option is incorrect. It is better to not use the ConnectedMonitor option unless you are experiencing problems.
The procedure of setting up multiple X screens is also descriped in the nvidia README that comes with the driver. It also explains al the options you can use in your xorg.conf.
I attached my xorg.conf as an example.
Option "ConnectedMonitor" "string"

Allows you to override what the NVIDIA kernel module detects is
connected to your video card. This may be useful, for example, if you
use a KVM (keyboard, video, mouse) switch and you are switched away
when X is started. In such a situation, the NVIDIA kernel module
cannot detect what display devices are connected, and the NVIDIA X
driver assumes you have a single CRT.

Valid values for this option are "CRT" (cathode ray tube), "DFP"
(digital flat panel), or "TV" (television); if using TwinView, this
option may be a comma-separated list of display devices; e.g.: "CRT,
CRT" or "CRT, DFP".

NOTE: anything attached to a 15 pin VGA connector is regarded by the
driver as a CRT. "DFP" should only be used to refer to flatpanels
connected via a DVI port.
Default: string is NULL.
Ok I know it's not enabled by default but it might solve some users' problems (this guide is for newbies). It won't damage or spoil anything so I don't see any problem. Anyhow if you do see a problem you can explain it to me (I'm kind of openminded)

mo_x
December 22nd, 2005, 11:50 AM
This is from your howto:
Option "ConnectedMonitor" "Monitor[1]"
but the valid options are "CRT", "DFP" or "TV". If you have a crt monitor and a tv connected is should be something like:
Option "ConnectedMonitor" "CRT,TV"
Most of the time the driver will detect what devices are connected and the option is not necessary. When te option is not used correctly it can also cause problems.

tseliot
December 22nd, 2005, 12:04 PM
This is from your howto:
Option "ConnectedMonitor" "Monitor[1]"
but the valid options are "CRT", "DFP" or "TV". If you have a crt monitor and a tv connected is should be something like:
Option "ConnectedMonitor" "CRT,TV"
Most of the time the driver will detect what devices are connected and the option is not necessary. When te option is not used correctly it can also cause problems.
I see your point, I don't have any problem but I'll fix that (I have to fix the entire guide according to the suggestions of the other users who had other problems)

mo_x
December 22nd, 2005, 01:34 PM
Because of the wrong syntax the ConnectedMonitor option is probably ignored. You can check /var/log/Xorg.0.log for warnings and errors.

tseliot
December 22nd, 2005, 01:41 PM
Because of the wrong syntax the ConnectedMonitor option is probably ignored. You can check /var/log/Xorg.0.log for warnings and errors.
Ok, thanks but I'll remove the option for now.

polt
December 22nd, 2005, 04:37 PM
This relates to HDTV support. My xorg.conf is now modified to bring it into line with this HowTo

Section "Device"
Identifier "NVIDIA Corporation NV43 [GeForce 6600 GT]"
Driver "nvidia"
BusID "PCI:1:0:0"
EndSection

Section "Monitor"
Identifier "Generic Monitor"
HorizSync 60
VertRefresh 30-150
Option "TVStandard" "HD1080i"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV43 [GeForce 6600 GT]"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1600x900" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

When I reboot it comes up in 1024x768 mode. The output looks very good -- HDTV quality, but still a smaller window on a larger (1920x1080) screen. /var/log/xorg.0.log reports that 1600x900 is a non-existent mode (even though nVidia 6600GT docs clearly show it exists).

Most modes are not supported at this hsync rate, so I would suggest increasing your recommendation when HDTV is involved. When I raised it to 150 kHz the HDTV displayed only a part of the window. I'll report later on if anything in between works out.

Also, if you read carefully below you will see there are no 16x9 modes at all. I feel like there must be a setting that will guide the driver to start looking for these modes (like 1920x1080) because the card supports them.


(II) NVIDIA(0): Generic Monitor: Using hsync value of 60.00 kHz
(II) NVIDIA(0): Generic Monitor: Using vrefresh range of 30.00-150.00 Hz
(II) NVIDIA(0): Clock range: 12.00 to 650.00 MHz
(II) NVIDIA(0): Not using default mode "640x350" (hsync out of range)
(II) NVIDIA(0): Not using default mode "320x175" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x400" (hsync out of range)
(II) NVIDIA(0): Not using default mode "320x200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "720x400" (hsync out of range)
(II) NVIDIA(0): Not using default mode "360x200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(0): Not using default mode "320x240" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(0): Not using default mode "320x240" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(0): Not using default mode "320x240" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(0): Not using default mode "320x240" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "400x300" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "400x300" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "400x300" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "400x300" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "400x300" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "512x384" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "512x384" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "512x384" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "512x384" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1152x864" (hsync out of range)
(II) NVIDIA(0): Not using default mode "576x432" (hsync out of range)
(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 "1280x1024" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x512" (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 "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 "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 "832x624" (hsync out of range)
(II) NVIDIA(0): Not using default mode "416x312" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x384" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x800" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x400" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1152x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "576x384" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1152x864" (hsync out of range)
(II) NVIDIA(0): Not using default mode "576x432" (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 "1400x1050" (hsync out of range)
(II) NVIDIA(0): Not using default mode "700x525" (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 "1400x1050" (hsync out of range)
(II) NVIDIA(0): Not using default mode "700x525" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1440x900" (hsync out of range)
(II) NVIDIA(0): Not using default mode "720x450" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1024" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x512" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1680x1050" (hsync out of range)
(II) NVIDIA(0): Not using default mode "840x525" (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 "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" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using mode "1600x900" (no mode of this name)
(II) NVIDIA(0): Not using mode "800x600" (no mode of this name)
(II) NVIDIA(0): Not using default mode "1280x960" (width too large for virtual size)
(WW) NVIDIA(0): Not using mode "512x384" (not a valid TV mode)
(**) NVIDIA(0): Validated modes for display device TV-0:
(**) NVIDIA(0): Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz
(**) NVIDIA(0): Default mode "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D)
(II) NVIDIA(0): Virtual screen size determined to be 1024 x 768

mo_x
December 22nd, 2005, 04:48 PM
I think in the howto the values for HorizSync and VertRefresh have been mixed up
from the howto:
HorizSync 60
VertRefresh 30-150
from the nvidia readme:
HorizSync 30-50
VertRefresh 60

tseliot
December 22nd, 2005, 05:02 PM
I think in the howto the values for HorizSync and VertRefresh have been mixed up
from the howto:
HorizSync 60
VertRefresh 30-150
from the nvidia readme:
HorizSync 30-50
VertRefresh 60
Thanks for making me notice. I suppose the stress due to my graduation made me do many mistakes. I should have some rest;) .

tseliot
December 22nd, 2005, 05:05 PM
This relates to HDTV support. My xorg.conf is now modified to bring it into line with this HowTo.
Also, if you read carefully below you will see there are no 16x9 modes at all. I feel like there must be a setting that will guide the driver to start looking for these modes (like 1920x1080) because the card supports them.
If Mo_x suggestion (i.e. correction) doesn't work for you you should have a look at the following guide http://ubuntuforums.org/showthread.php?t=83973&highlight=resolution

polt
December 22nd, 2005, 05:18 PM
HorizSync vs. VertRefresh

Well, we're all trying to figure this out. If we knew it, we wouldn't be here. ;) I found something on the nVidia website called NVIDIA Accelerated Linux Driver Set README and Installation Guide. Its available by FTP (HTTP doen't work!?) at http://download.nvidia.com/XFree86/Linux-x86_64/1.0-8178/README/index.html (ftp://download.nvidia.com/XFree86/Linux-x86_64/1.0-8178/README/index.html)
It might be a little out of date

Anyhow, they recommend using

#
HorizSync 30-50
VertRefresh 60


I think that's a little low for a decent HDTV.

When I increase HorizSync to 30-100 the video doesn't work right and GUI is unusable. (Use Ctrl-Alt-F1 to get back to terminal and recover your xorg.conf backup.) Notice that we now need a range of Vertical Refresh rates to satisfy the card.

I don't want to pollute this sytem with XP, but I'm tempted to try it just to see what the Windows driver can do. The xorg.0.log file gives me no hope that HDTV is supported in 16x9 aspect ratio with the Linux driver, but the video card user manual is very clear that those modes *are* supported.


(II) NVIDIA(0): Generic Monitor: Using hsync range of 30.00-100.00 kHz
(II) NVIDIA(0): Generic Monitor: Using vrefresh value of 60.00 Hz
(II) NVIDIA(0): Clock range: 12.00 to 650.00 MHz
(II) NVIDIA(0): Not using default mode "640x350" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x175" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x400" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x200" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "720x400" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "360x200" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "512x384" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "512x384" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "512x384" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "512x384" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1152x864" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "576x432" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1280x960" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1280x1024" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x512" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1280x1024" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x512" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh 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 "1920x1440" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(0): Not using default mode "832x624" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "416x312" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1152x768" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "576x384" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1152x864" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "576x432" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1400x1050" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "700x525" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1400x1050" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "700x525" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1400x1050" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "700x525" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1920x1200" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "960x600" (vrefresh 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" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1920x1440" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1856x1392" (width too large for virtual size)
(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 "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 "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 "1280x768" (width too large for virtual size)
(WW) NVIDIA(0): Not using mode "960x720" (not a valid TV mode)
(WW) NVIDIA(0): Not using mode "928x696" (not a valid TV mode)
(WW) NVIDIA(0): Not using mode "896x672" (not a valid TV mode)
(WW) NVIDIA(0): Not using mode "960x600" (not a valid TV mode)
(WW) NVIDIA(0): Not using mode "840x525" (not a valid TV mode)
(WW) NVIDIA(0): Not using mode "700x525" (not a valid TV mode)
(WW) NVIDIA(0): Not using mode "640x512" (not a valid TV mode)
(WW) NVIDIA(0): Not using mode "720x450" (not a valid TV mode)
(WW) NVIDIA(0): Not using mode "640x384" (not a valid TV mode)
(WW) NVIDIA(0): Not using mode "512x384" (not a valid TV mode)
(**) NVIDIA(0): Validated modes for display device TV-0:
(**) NVIDIA(0): Default mode "1024x768": 133.5 MHz, 95.3 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
(**) NVIDIA(0): Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz
(**) NVIDIA(0): Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz
(**) NVIDIA(0): Default mode "800x600": 81.0 MHz, 75.0 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "640x400": 41.7 MHz, 49.7 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(**) NVIDIA(0): Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D)
(II) NVIDIA(0): Virtual screen size determined to be 1024 x 768

mo_x
December 22nd, 2005, 05:33 PM
How are you connecting the HDTV, throught tv-out or dvi?
The 1.0-8178 is very recent (today).

polt
December 22nd, 2005, 05:47 PM
Connection Method

The card is a Gigabyte 6600GT. My HDTV has only component video inputs (3 wires colored Red, Green and Blue) and no DVI connector (actually it has one but it is incompatible with the usual flat screen cable and they say not to plug a computer in there). There is an adapter that plugs into the S-VIDEO output on the video card and breaks that out into component video. That is what I'm using to connect with the HDTV.

tseliot
December 22nd, 2005, 05:56 PM
Connection Method

The card is a Gigabyte 6600GT. My HDTV has only component video inputs (3 wires colored Red, Green and Blue) and no DVI connector (actually it has one but it is incompatible with the usual flat screen cable and they say not to plug a computer in there). There is an adapter that plugs into the S-VIDEO output on the video card and breaks that out into component video. That is what I'm using to connect with the HDTV.
What's the model of your HDTV?

polt
December 22nd, 2005, 06:01 PM
It's a big Sony projection model a couple of years old. It's a 1080i system. I don't think 1080p is supported, but I'm not really sure yet. Can't find the manual to give exact model number.

It's pretty clear that the nVidia card is not talking with the monitor. The component video connection is recommended in the manual for HDTV connection. It is an analog, one-way communication. IMHO, it's something about the driver or the configuration that is preventing the 16x9 video modes from appearing.

tseliot
December 22nd, 2005, 06:04 PM
It's a big Sony projection model a couple of years old. It's a 1080i system. I don't think 1080p is supported, but I'm not really sure yet.
If you know the name of the model you can find the supported refresh rates and resolutions.

tseliot
December 22nd, 2005, 06:58 PM
UPDATE: I've put Option "ConnectedMonitor" back in the guide because in my case the Xserver doesn't work if I disable that option.

EDIT: I have installed driver 8178 and its GREAT. It adds an application "Nvidia X server settings" which lets you tweak both your TV and Monitor performance.

tseliot
December 22nd, 2005, 07:14 PM
It's a big Sony projection model a couple of years old. It's a 1080i system. I don't think 1080p is supported, but I'm not really sure yet. Can't find the manual to give exact model number.

It's pretty clear that the nVidia card is not talking with the monitor. The component video connection is recommended in the manual for HDTV connection. It is an analog, one-way communication. IMHO, it's something about the driver or the configuration that is preventing the 16x9 video modes from appearing.
After you find the exact model of your HDTV have a look at this:
The "TVStandard" option should be added to your screen section; valid values are:
TVStandard Description
"PAL-B" used in Belgium, Denmark, Finland, Germany, Guinea, Hong Kong, India, Indonesia, Italy, Malaysia, The Netherlands, Norway, Portugal, Singapore, Spain, Sweden, and Switzerland
"PAL-D" used in China and North Korea
"PAL-G" used in Denmark, Finland, Germany, Italy, Malaysia, The Netherlands, Norway, Portugal, Spain, Sweden, and Switzerland
"PAL-H" used in Belgium
"PAL-I" used in Hong Kong and The United Kingdom
"PAL-K1" used in Guinea
"PAL-M" used in Brazil
"PAL-N" used in France, Paraguay, and Uruguay
"PAL-NC" used in Argentina
"NTSC-J" used in Japan
"NTSC-M" used in Canada, Chile, Colombia, Costa Rica, Ecuador, Haiti, Honduras, Mexico, Panama, Puerto Rico, South Korea, Taiwan, United States of America, and Venezuela
"HD480i" 480 line interlaced
"HD480p" 480 line progressive
"HD720p" 720 line progressive
"HD1080i" 1080 line interlaced
"HD1080p" 1080 line progressive
"HD576i" 576 line interlace
"HD576p" 576 line progressive

polt
December 22nd, 2005, 07:56 PM
I'm not sure what you mean?

I have been using HD1080i all along and getting a very nice 1024x768 window. I can also coax it up to 1280x1024, but that runs into "overscan" problems.

The ideal resoltuion is "1600x900," but the Linux software does not recognize the existence of that TV mode. (Take a look at the xorg.0.log files I posted earlier.)

I have tried a very wide range of refresh rates and horizontal syncs. None of the settings gives me anything but 4x3 windows on a 16x9 screen.

The point is: the present thread is great for TV, but I have yet to see it work for HDTV. I'm hoping we can figure out how to improve it. Has anyone gotten the recommendations of this HowTo to work on HDTV (not flat-screen monitor)?

mo_x
December 23rd, 2005, 07:19 AM
@polt
I suggest you try the new 1.0-8178 driver. It has some improvements for HDTV modes.
Also take a look on the nvidia linux forums, there are various threads on making HDTV work.
http://www.nvnews.net/vbulletin/forumdisplay.php?f=14

cdhotfire
December 24th, 2005, 01:14 AM
Is is possible to only have one desktop? Meaning, is there a way to show whats on my monitor in the tv?

Luzbel
December 26th, 2005, 08:39 PM
I would like to know whether it's possible to set X.org to open a different X session for the TV-Out, instead of with two cards and Xfree as explained here (http://disjunkt.com/dualhead/)

tseliot
December 27th, 2005, 04:31 AM
I would like to know whether it's possible to set X.org to open a different X session for the TV-Out, instead of with two cards and Xfree as explained here (http://disjunkt.com/dualhead/)
Only 1 card is required and you can use the 2 screens independently (e.g.you can watch a film on 1 screen and play games on the other one)

tseliot
December 27th, 2005, 04:33 AM
Is is possible to only have one desktop? Meaning, is there a way to show whats on my monitor in the tv?
I'll let you know if I find a way to do that (the clone screen function didn't work for me).

In the meantime you can try with the guide about Nvidia Twinview (cloning screens works there)

Luzbel
December 27th, 2005, 10:03 PM
Only 1 card is required and you can use the 2 screens independently (e.g.you can watch a film on 1 screen and play games on the other one)

Yes, I undestood so far, but as stated in the howto, you have to log into X and then you get both screens working. I was wondering if there is any chance two run two independent sessions of X(org), one for each screen, so I can log two different users at the same time with an individual screen for each. All that using the TV-Out thing, without needing to get one more graphic card. Thank you!

PS: I'll inform you if I manage to get this working.

a8ne
December 28th, 2005, 08:02 AM
I changed my monitor names according to the Nvidia README but I'm still getting this warning in my Xorg.0.log:

(WW) NVIDIA(0): Multiple displays connected, but only one display allowed;
(WW) NVIDIA(0): using first display

Also, I added:

Option "IgnoreEDID" "True"

but I'm still getting this warning:

(WW) NVIDIA(1): Unable to get display device TV-0's EDID; cannot compute DPI
(WW) NVIDIA(1): from EDID.
(==) NVIDIA(1): DPI set to (75, 75); computed from built-in default

My TV flickers when I boot then goes black.:(

I'm attaching my xorg.conf in case maybe I have some stupid mistake:

tseliot
December 28th, 2005, 09:50 AM
I changed my monitor names according to the Nvidia README but I'm still getting this warning in my Xorg.0.log:

(WW) NVIDIA(0): Multiple displays connected, but only one display allowed;
(WW) NVIDIA(0): using first display

Also, I added:

Option "IgnoreEDID" "True"

but I'm still getting this warning:

(WW) NVIDIA(1): Unable to get display device TV-0's EDID; cannot compute DPI
(WW) NVIDIA(1): from EDID.
(==) NVIDIA(1): DPI set to (75, 75); computed from built-in default

My TV flickers when I boot then goes black.:(

I'm attaching my xorg.conf in case maybe I have some stupid mistake:
Make modify this section like in the example:
Section "Monitor"
Identifier "TV" #TV
HorizSync 30-50
VertRefresh 60
EndSection

Anyhow you will be able to see anything on your TV ONLY AFTER you log in.
(the fact you can see the screen before booting Ubuntu doesn't mean anything)

a8ne
December 28th, 2005, 05:42 PM
Make modify this section like in the example:
Section "Monitor"
Identifier "TV" #TV
HorizSync 30-50
VertRefresh 60
EndSection


Um, I already had it that way.

tseliot
December 29th, 2005, 05:30 AM
Um, I already had it that way.
Ok, then do this thing for me:
Press CTRL+ALT+F1 (you will only see the command line)
sudo /etc/init.d/gdm stop (if you use GDM)
OR
sudo /etc/init.d/kdm stop (if you use kDM)
startx -- -verbose 5 -logverbose 5

and post the output (which you can find under /var/log/Xorg.0.log )

Luzbel
December 29th, 2005, 06:03 PM
I think I've already read about that, not sure thou. If getting a black and white image, is it the TV to blame? Are there any other possible reasons? Thank you!

Answering myself, it's most probably because of the cable. Will check with other TV when I have time.

dninja
December 30th, 2005, 07:14 AM
Brilliant tutorial, worked first time, apart from I only get black and white on my tv. I'm in the UK and connecting with an SVIDEO -> scart cable. I put the following in my xorg.conf

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

Any ideas how to get colour?

dninja
December 30th, 2005, 07:55 AM
Another question, how do I get tv only output? The pc is going to be used with just the telly so I need to remove the crt output.

I tried the obvious stuff of removing the crt stuff and just leaving the tv sections but if I do that I get crt in tv resolution.

tseliot
December 30th, 2005, 08:19 AM
----

dninja
December 30th, 2005, 08:32 AM
No, I tried that, this is what I end up with and all I get is monitor output in 640x480.


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

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

Section "Screen"
Device "Device"
Identifier "Screen"
Monitor "Monitor"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection


Have I missed anything?

a8ne
December 30th, 2005, 10:02 AM
Ok, then do this thing for me:
Press CTRL+ALT+F1 (you will only see the command line)
sudo /etc/init.d/gdm stop (if you use GDM)
OR
sudo /etc/init.d/kdm stop (if you use kDM)
startx -- -verbose 5 -logverbose 5

and post the output (which you can find under /var/log/Xorg.0.log )

This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation CVS repository.
See http://wiki.x.org/wiki/CvsPage for CVS access instructions.

X Window System Version 6.99.99.904 (7.0.0 RC 4)
Release Date: 14 December 2005
X Protocol Version 11, Revision 0, Release 6.99.99.904
Build Operating System:Linux 2.6.8.1 x86_64
Current Operating System: Linux box 2.6.15-9-amd64-generic #1 PREEMPT Wed Dec 21 14:22:40 UTC 2005 x86_64
Build Date: 15 December 2005
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Fri Dec 30 22:54:10 2005
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "screen0" (0)
(**) | |-->Monitor "DFP"
(**) | |-->Device "nvidia0"
(**) |-->Screen "screen1" (1)
(**) | |-->Monitor "TV"
(**) | |-->Device "nvidia1"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(**) 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 "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(**) Extension "Composite" is enabled
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.8
X.Org XInput driver : 0.5
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 6.99.99.904, 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/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 6.99.99.904, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(++) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,005e card 1043,815a rev a3 class 05,80,00 hdr 00
(II) PCI: 00:01:0: chip 10de,0050 card 1043,815a rev a3 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,0052 card 1043,815a rev a2 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,005a card 1043,815a rev a2 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,005b card 1043,815a rev a3 class 0c,03,20 hdr 80
(II) PCI: 00:06:0: chip 10de,0053 card 1043,815a rev a2 class 01,01,8a hdr 00
(II) PCI: 00:07:0: chip 10de,0054 card 1043,815a rev a3 class 01,01,85 hdr 00
(II) PCI: 00:08:0: chip 10de,0055 card 1043,815a rev a3 class 01,01,85 hdr 00
(II) PCI: 00:09:0: chip 10de,005c card 0000,0000 rev a2 class 06,04,01 hdr 01
(II) PCI: 00:0b:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0c:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0d:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0e:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 01:00:0: chip 10de,0140 card 107d,2009 rev a2 class 03,00,00 hdr 00
(II) PCI: 05:06:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 00
(II) PCI: 05:08:0: chip 1102,0007 card 1102,1006 rev 00 class 04,01,00 hdr 00
(II) PCI: End of PCI scan
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 5: bridge is at (0:9:0), (0,5,5), BCTRL: 0x0202 (VGA_EN is cleared)
(II) Bus 5 I/O range:
[0] -1 0 0x0000a000 - 0x0000afff (0x1000) IX[B]
(II) Bus 5 non-prefetchable memory range:
[0] -1 0 0xd0000000 - 0xd1ffffff (0x2000000) MX[B]
(II) Bus 5 prefetchable memory range:
[0] -1 0 0x50000000 - 0x500fffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 4: bridge is at (0:11:0), (0,4,4), BCTRL: 0x0002 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:12:0), (0,3,3), BCTRL: 0x0002 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:13:0), (0,2,2), BCTRL: 0x0002 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:14:0), (0,1,1), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xc8000000 - 0xcfffffff (0x8000000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xc0000000 - 0xc7ffffff (0x8000000) MX[B]
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:24:0), (0,0,5), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(--) PCI:*(1:0:0) nVidia Corporation NV43 [GeForce 6600 GT] rev 162, Mem @ 0xc8000000/26, 0xc0000000/27, 0xcc000000/24
(II) Addressable bus resource ranges are
[0] -1 0 0x00000000 - 0xffffffff (0x100000000) 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) Active PCI resource ranges:
[0] -1 0 0xd1000000 - 0xd10000ff (0x100) MX[B]
[1] -1 0 0xd2000000 - 0xd2000fff (0x1000) MX[B]
[2] -1 0 0xd2001000 - 0xd2001fff (0x1000) MX[B]
[3] -1 0 0xd2003000 - 0xd20030ff (0x100) MX[B]
[4] -1 0 0xd2002000 - 0xd2002fff (0x1000) MX[B]
[5] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B)
[6] -1 0 0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
[7] -1 0 0xc8000000 - 0xcbffffff (0x4000000) MX[B](B)
[8] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[9] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B]
[10] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[B]
[11] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
[12] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
[13] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
[14] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
[15] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[16] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[17] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[18] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[19] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[20] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
[21] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[22] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[23] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xd1000000 - 0xd10000ff (0x100) MX[B]
[1] -1 0 0xd2000000 - 0xd2000fff (0x1000) MX[B]
[2] -1 0 0xd2001000 - 0xd2001fff (0x1000) MX[B]
[3] -1 0 0xd2003000 - 0xd20030ff (0x100) MX[B]
[4] -1 0 0xd2002000 - 0xd2002fff (0x1000) MX[B]
[5] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B)
[6] -1 0 0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
[7] -1 0 0xc8000000 - 0xcbffffff (0x4000000) MX[B](B)
[8] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[9] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B]
[10] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[B]
[11] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
[12] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
[13] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
[14] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
[15] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[16] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[17] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[18] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[19] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[20] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
[21] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[22] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[23] -1 0 0x0000d800 - 0x0000d81f (0x20) 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 0xd1000000 - 0xd10000ff (0x100) MX[B]
[6] -1 0 0xd2000000 - 0xd2000fff (0x1000) MX[B]
[7] -1 0 0xd2001000 - 0xd2001fff (0x1000) MX[B]
[8] -1 0 0xd2003000 - 0xd20030ff (0x100) MX[B]
[9] -1 0 0xd2002000 - 0xd2002fff (0x1000) MX[B]
[10] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B)
[11] -1 0 0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
[12] -1 0 0xc8000000 - 0xcbffffff (0x4000000) MX[B](B)
[13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[14] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[15] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[16] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B]
[17] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[B]
[18] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
[19] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
[20] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
[21] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
[22] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[23] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[24] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[25] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[26] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[27] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
[28] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[29] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[30] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
(II) LoadModule: "bitmap"
(II) Reloading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Loading font Bitmap
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
compiled for 6.99.99.904, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions/libdri.so
(II) Module dri: vendor="X.Org Foundation"
compiled for 6.99.99.904, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/lib/xorg/modules/linux/libdrm.so
(II) Module drm: vendor="X.Org Foundation"
compiled for 6.99.99.904, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 6.99.99.904, 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/lib/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
compiled for 6.99.99.904, 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/lib/xorg/modules/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.8174
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules/libint10.so
(II) Module int10: vendor="X.Org Foundation"
compiled for 6.99.99.904, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "type1"
(II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
compiled for 6.99.99.904, 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) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules/libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
compiled for 6.99.99.904, module version = 1.1.0
ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "nvidia"
(II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.o
(II) Module nvidia: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.8174
Module class: XFree86 Video Driver
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
compiled for 6.99.99.902, module version = 1.0.1
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.5
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
compiled for 6.99.99.902, module version = 1.0.3
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.5
(II) NVIDIA X Driver 1.0-8174 Tue Nov 22 18:24:20 PST 2005
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 01:00:0
(--) Chipset NVIDIA GPU found
(--) Chipset NVIDIA GPU found
(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 0xd1000000 - 0xd10000ff (0x100) MX[B]
[6] -1 0 0xd2000000 - 0xd2000fff (0x1000) MX[B]
[7] -1 0 0xd2001000 - 0xd2001fff (0x1000) MX[B]
[8] -1 0 0xd2003000 - 0xd20030ff (0x100) MX[B]
[9] -1 0 0xd2002000 - 0xd2002fff (0x1000) MX[B]
[10] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B)
[11] -1 0 0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
[12] -1 0 0xc8000000 - 0xcbffffff (0x4000000) MX[B](B)
[13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[14] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[15] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[16] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B]
[17] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[B]
[18] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
[19] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
[20] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
[21] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
[22] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[23] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[24] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[25] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[26] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[27] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
[28] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[29] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[30] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
(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 0xd1000000 - 0xd10000ff (0x100) MX[B]
[6] -1 0 0xd2000000 - 0xd2000fff (0x1000) MX[B]
[7] -1 0 0xd2001000 - 0xd2001fff (0x1000) MX[B]
[8] -1 0 0xd2003000 - 0xd20030ff (0x100) MX[B]
[9] -1 0 0xd2002000 - 0xd2002fff (0x1000) MX[B]
[10] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B)
[11] -1 0 0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
[12] -1 0 0xc8000000 - 0xcbffffff (0x4000000) MX[B](B)
[13] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[14] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[15] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[17] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[18] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[19] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B]
[20] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[B]
[21] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
[22] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
[23] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
[24] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
[25] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[26] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[27] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[28] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[29] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[30] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
[31] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[32] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[33] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[34] 0 0 0xcd0003b0 - 0xcd0003bb (0xc) IS[B]
[35] 0 0 0xcd0003c0 - 0xcd0003df (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.0, 1.0, 1.0)
(**) NVIDIA(0): Option "RenderAccel" "true"
(**) NVIDIA(0): Option "AllowGLXWithComposite" "true"
(**) NVIDIA(0): Enabling experimental RENDER acceleration
(--) NVIDIA(0): Linear framebuffer at 0xC0000000
(--) NVIDIA(0): MMIO registers at 0xC8000000
(II) NVIDIA(0): NVIDIA GPU detected as: GeForce 6600 GT
(--) NVIDIA(0): VideoBIOS: 05.43.02.39.00
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(II) NVIDIA(0): Detected PCI Express Link width: 16X
(--) NVIDIA(0): VideoRAM: 131072 kBytes
(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
(--) NVIDIA(0): CRT-0: maximum pixel clock: 400 MHz
(II) NVIDIA(0): Frequency information for CRT-0:
(II) NVIDIA(0): HorizSync : 30.000-81.000 kHz
(II) NVIDIA(0): VertRefresh : 56.000-75.000 Hz
(II) NVIDIA(0): (HorizSync from EDID)
(II) NVIDIA(0): (VertRefresh from EDID)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules/libint10.so
(WW) NVIDIA(0): Bad V_BIOS checksum
(II) NVIDIA(0): Primary V_BIOS segment is: 0xc000
(II) NVIDIA(0): DFP: Using hsync range of 30.00-81.00 kHz
(II) NVIDIA(0): DFP: Using vrefresh range of 56.00-75.00 Hz
(II) NVIDIA(0): Clock range: 12.00 to 400.00 MHz
(II) NVIDIA(0): Not using default mode "640x350" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x175" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x400" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x200" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "720x400" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "360x200" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "512x384" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "512x384" (vrefresh out of range)
(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 "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 "1152x768" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "576x384" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1152x864" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "576x432" (vrefresh 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" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(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 "1440x900" (width too large for virtual size)
(**) NVIDIA(0): Validated modes for display device CRT-0:
(**) NVIDIA(0): Default mode "1280x1024": 135.0 MHz, 80.0 kHz, 75.0 Hz
(**) NVIDIA(0): Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz
(**) NVIDIA(0): Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz
(**) NVIDIA(0): Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz
(**) NVIDIA(0): Default mode "1280x1024": 108.0 MHz, 64.0 kHz, 60.0 Hz
(**) NVIDIA(0): Default mode "1280x960": 108.0 MHz, 60.0 kHz, 60.0 Hz
(**) NVIDIA(0): Default mode "1280x800": 83.5 MHz, 49.7 kHz, 60.0 Hz
(**) NVIDIA(0): Default mode "1152x864": 108.0 MHz, 67.5 kHz, 75.0 Hz
(**) NVIDIA(0): Default mode "1280x768": 80.1 MHz, 47.7 kHz, 60.0 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": 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.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 "640x400": 41.7 MHz, 49.7 kHz, 60.0 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 "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": 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": 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)
(II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
(--) NVIDIA(0): DPI set to (95, 96); computed from "UseEdidDpi" X config option
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
compiled for 6.99.99.904, 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/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
compiled for 6.99.99.904, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.8
(**) 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)

a8ne
December 30th, 2005, 10:03 AM
(**) NVIDIA(1): Option "IgnoreEDID" "True"
(**) NVIDIA(1): Option "ConnectedMonitor" "TV"
(**) NVIDIA(1): Option "TVStandard" "NTSC-M"
(**) NVIDIA(1): Option "TVOutFormat" "Composite"
(**) NVIDIA(1): Option "RenderAccel" "true"
(**) NVIDIA(1): Option "AllowGLXWithComposite" "true"
(**) NVIDIA(1): Enabling experimental RENDER acceleration
(**) NVIDIA(1): Forcing COMPOSITE video output
(**) NVIDIA(1): Ignoring EDIDs
(**) NVIDIA(1): ConnectedMonitor string: "TV"
(**) NVIDIA(1): TV Standard string: "NTSC-M"
(--) NVIDIA(1): Linear framebuffer at 0xC0000000
(--) NVIDIA(1): MMIO registers at 0xC8000000
(II) NVIDIA(1): NVIDIA GPU detected as: GeForce 6600 GT
(--) NVIDIA(1): VideoBIOS: 05.43.02.39.00
(--) NVIDIA(1): Interlaced video modes are supported on this GPU
(II) NVIDIA(1): Detected PCI Express Link width: 16X
(--) NVIDIA(1): VideoRAM: 131072 kBytes
(II) NVIDIA(1): Using ConnectedMonitor string "TV-0"
(--) NVIDIA(1): Detected TV Encoder: NVIDIA
(--) NVIDIA(1): TV-0: maximum pixel clock: 400 MHz
(II) NVIDIA(1): Not probing EDIDs.
(II) NVIDIA(1): Frequency information for TV-0:
(II) NVIDIA(1): HorizSync : 30.000-50.000 kHz
(II) NVIDIA(1): VertRefresh : 60.000 Hz
(II) NVIDIA(1): (HorizSync from HorizSync in X Config Monitor section)
(II) NVIDIA(1): (VertRefresh from VertRefresh in X Config Monitor
(II) NVIDIA(1): section)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules/libint10.so
(WW) NVIDIA(0): Bad V_BIOS checksum
(II) NVIDIA(0): Primary V_BIOS segment is: 0xc000
(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 400.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" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "512x384" (vrefresh 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 "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)
(II) NVIDIA(1): Not using default mode "1024x768" (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 "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 800 x 600
(WW) NVIDIA(1): Unable to get display device TV-0's EDID; cannot compute DPI
(WW) NVIDIA(1): from EDID.
(==) NVIDIA(1): DPI set to (75, 75); computed from built-in default
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Reloading /usr/lib/xorg/modules/libfb.so
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Reloading /usr/lib/xorg/modules/libramdac.so
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? Yes, I do.
(II) LoadModule: "rac"
(II) Loading /usr/lib/xorg/modules/librac.so
(II) Module rac: vendor="X.Org Foundation"
compiled for 6.99.99.904, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(II) resource ranges after preInit:
[0] 0 0 0xcc000000 - 0xccffffff (0x1000000) MX[B]
[1] 0 0 0xc0000000 - 0xc7ffffff (0x8000000) MX[B]
[2] 0 0 0xc8000000 - 0xcbffffff (0x4000000) MX[B]
[3] 0 0 0xcc000000 - 0xccffffff (0x1000000) MX[B]
[4] 0 0 0xc0000000 - 0xc7ffffff (0x8000000) MX[B]
[5] 0 0 0xc8000000 - 0xcbffffff (0x4000000) MX[B]
[6] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[7] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[8] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[9] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[10] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[11] -1 0 0xd1000000 - 0xd10000ff (0x100) MX[B]
[12] -1 0 0xd2000000 - 0xd2000fff (0x1000) MX[B]
[13] -1 0 0xd2001000 - 0xd2001fff (0x1000) MX[B]
[14] -1 0 0xd2003000 - 0xd20030ff (0x100) MX[B]
[15] -1 0 0xd2002000 - 0xd2002fff (0x1000) MX[B]
[16] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B)
[17] -1 0 0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
[18] -1 0 0xc8000000 - 0xcbffffff (0x4000000) MX[B](B)
[19] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
[20] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
[21] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
[22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[23] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[24] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[25] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B]
[26] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[B]
[27] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
[28] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
[29] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
[30] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
[31] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[32] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[33] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[34] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[35] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[36] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
[37] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[38] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[39] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[40] 0 0 0xcd0003b0 - 0xcd0003bb (0xc) IS[B]
[41] 0 0 0xcd0003c0 - 0xcd0003df (0x20) IS[B]
(II) NVIDIA(0): Setting mode "1280x1024"
(II) Loading extension NV-GLX
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(0): Backing store disabled
(==) NVIDIA(0): Silken mouse enabled
(**) Option "dpms"
(**) NVIDIA(0): DPMS enabled
(II) Loading extension NV-CONTROL
(==) RandR enabled
(II) NVIDIA(1): Setting mode "800x600"
(II) NVIDIA(1): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(1): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(1): Backing store disabled
(==) NVIDIA(1): Silken mouse enabled
(==) RandR enabled
(II) Setting vga for screen 0.
(II) Setting vga for screen 1.
Screen 0 is using RAC for io
Screen 1 is using RAC for io
(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 XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(II) Initializing extension GLX
error opening security policy file /etc/xserver/SecurityPolicy
(**) Option "CoreKeyboard"
(**) Generic Keyboard: Core Keyboard
(**) Option "Protocol" "standard"
(**) Generic Keyboard: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Generic Keyboard: XkbRules: "xorg"
(**) Option "XkbModel" "pc104"
(**) Generic Keyboard: XkbModel: "pc104"
(**) Option "XkbLayout" "us"
(**) Generic Keyboard: XkbLayout: "us"
(**) Option "CustomKeycodes" "off"
(**) Generic Keyboard: CustomKeycodes disabled
(**) 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: 9
(II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
(II) XINPUT: Adding extended input device "Generic Keyboard" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(II) Configured Mouse: ps2EnableDataReporting: succeeded

tseliot
December 30th, 2005, 10:20 AM
(**) NVIDIA(1): Option "IgnoreEDID" "True"
(**) NVIDIA(1): Option "ConnectedMonitor" "TV"
(**) NVIDIA(1): Option "TVStandard" "NTSC-M"
(**) NVIDIA(1): Option "TVOutFormat" "Composite"
(**) NVIDIA(1): Option "RenderAccel" "true"
(**) NVIDIA(1): Option "AllowGLXWithComposite" "true"
(**) NVIDIA(1): Enabling experimental RENDER acceleration
(**) NVIDIA(1): Forcing COMPOSITE video output
(**) NVIDIA(1): Ignoring EDIDs
(**) NVIDIA(1): ConnectedMonitor string: "TV"
(**) NVIDIA(1): TV Standard string: "NTSC-M"
(--) NVIDIA(1): Linear framebuffer at 0xC0000000
(--) NVIDIA(1): MMIO registers at 0xC8000000
(II) NVIDIA(1): NVIDIA GPU detected as: GeForce 6600 GT
(--) NVIDIA(1): VideoBIOS: 05.43.02.39.00
(--) NVIDIA(1): Interlaced video modes are supported on this GPU
(II) NVIDIA(1): Detected PCI Express Link width: 16X
(--) NVIDIA(1): VideoRAM: 131072 kBytes
(II) NVIDIA(1): Using ConnectedMonitor string "TV-0"
(--) NVIDIA(1): Detected TV Encoder: NVIDIA
(--) NVIDIA(1): TV-0: maximum pixel clock: 400 MHz
(II) NVIDIA(1): Not probing EDIDs.
(II) NVIDIA(1): Frequency information for TV-0:
(II) NVIDIA(1): HorizSync : 30.000-50.000 kHz
(II) NVIDIA(1): VertRefresh : 60.000 Hz
(II) NVIDIA(1): (HorizSync from HorizSync in X Config Monitor section)
(II) NVIDIA(1): (VertRefresh from VertRefresh in X Config Monitor
(II) NVIDIA(1): section)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules/libint10.so
(WW) NVIDIA(0): Bad V_BIOS checksum
(II) NVIDIA(0): Primary V_BIOS segment is: 0xc000
(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 400.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" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "512x384" (vrefresh 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 "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)
(II) NVIDIA(1): Not using default mode "1024x768" (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 "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 800 x 600
(WW) NVIDIA(1): Unable to get display device TV-0's EDID; cannot compute DPI
(WW) NVIDIA(1): from EDID.
(==) NVIDIA(1): DPI set to (75, 75); computed from built-in default
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Reloading /usr/lib/xorg/modules/libfb.so
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Reloading /usr/lib/xorg/modules/libramdac.so
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? Yes, I do.
(II) LoadModule: "rac"
(II) Loading /usr/lib/xorg/modules/librac.so
(II) Module rac: vendor="X.Org Foundation"
compiled for 6.99.99.904, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(II) resource ranges after preInit:
[0] 0 0 0xcc000000 - 0xccffffff (0x1000000) MX[B]
[1] 0 0 0xc0000000 - 0xc7ffffff (0x8000000) MX[B]
[2] 0 0 0xc8000000 - 0xcbffffff (0x4000000) MX[B]
[3] 0 0 0xcc000000 - 0xccffffff (0x1000000) MX[B]
[4] 0 0 0xc0000000 - 0xc7ffffff (0x8000000) MX[B]
[5] 0 0 0xc8000000 - 0xcbffffff (0x4000000) MX[B]
[6] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[7] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[8] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[9] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[10] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[11] -1 0 0xd1000000 - 0xd10000ff (0x100) MX[B]
[12] -1 0 0xd2000000 - 0xd2000fff (0x1000) MX[B]
[13] -1 0 0xd2001000 - 0xd2001fff (0x1000) MX[B]
[14] -1 0 0xd2003000 - 0xd20030ff (0x100) MX[B]
[15] -1 0 0xd2002000 - 0xd2002fff (0x1000) MX[B]
[16] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B)
[17] -1 0 0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
[18] -1 0 0xc8000000 - 0xcbffffff (0x4000000) MX[B](B)
[19] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
[20] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
[21] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
[22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[23] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[24] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
[25] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B]
[26] -1 0 0x0000c000 - 0x0000c00f (0x10) IX[B]
[27] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[B]
[28] -1 0 0x00000960 - 0x00000967 (0x8) IX[B]
[29] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[B]
[30] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[B]
[31] -1 0 0x0000d400 - 0x0000d40f (0x10) IX[B]
[32] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[B]
[33] -1 0 0x00000970 - 0x00000977 (0x8) IX[B]
[34] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[B]
[35] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[B]
[36] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
[37] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[38] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[39] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[40] 0 0 0xcd0003b0 - 0xcd0003bb (0xc) IS[B]
[41] 0 0 0xcd0003c0 - 0xcd0003df (0x20) IS[B]
(II) NVIDIA(0): Setting mode "1280x1024"
(II) Loading extension NV-GLX
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(0): Backing store disabled
(==) NVIDIA(0): Silken mouse enabled
(**) Option "dpms"
(**) NVIDIA(0): DPMS enabled
(II) Loading extension NV-CONTROL
(==) RandR enabled
(II) NVIDIA(1): Setting mode "800x600"
(II) NVIDIA(1): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(1): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(1): Backing store disabled
(==) NVIDIA(1): Silken mouse enabled
(==) RandR enabled
(II) Setting vga for screen 0.
(II) Setting vga for screen 1.
Screen 0 is using RAC for io
Screen 1 is using RAC for io
(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 XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(II) Initializing extension GLX
error opening security policy file /etc/xserver/SecurityPolicy
(**) Option "CoreKeyboard"
(**) Generic Keyboard: Core Keyboard
(**) Option "Protocol" "standard"
(**) Generic Keyboard: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Generic Keyboard: XkbRules: "xorg"
(**) Option "XkbModel" "pc104"
(**) Generic Keyboard: XkbModel: "pc104"
(**) Option "XkbLayout" "us"
(**) Generic Keyboard: XkbLayout: "us"
(**) Option "CustomKeycodes" "off"
(**) Generic Keyboard: CustomKeycodes disabled
(**) 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: 9
(II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
(II) XINPUT: Adding extended input device "Generic Keyboard" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(II) Configured Mouse: ps2EnableDataReporting: succeeded
Maybe this is your problem: NVIDIA(0): Bad V_BIOSchecksum

You should ask for help in the Unofficial Nvidia Forum

tseliot
December 30th, 2005, 10:45 AM
No, I tried that, this is what I end up with and all I get is monitor output in 640x480.


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

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

Section "Screen"
Device "Device"
Identifier "Screen"
Monitor "Monitor"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection


Have I missed anything?
Sorry but I was in a hurry before and I gave you a wrong answer (I had to have lunch).

Ok, set your xorg.conf following the guide except for this part:

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

and restart X (CTRL+ALT+BACKSPACE)

Or

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

and restart X (CTRL+ALT+BACKSPACE)
Tell me which one works (if there's one which works) and what happens.

tseliot
December 30th, 2005, 10:48 AM
I think I've already read about that, not sure thou. If getting a black and white image, is it the TV to blame? Are there any other possible reasons? Thank you!

Answering myself, it's most probably because of the cable. Will check with other TV when I have time.
I have a doubt. Could you try this thing?
Change the following parameters of your tv in the section "monitor"

HorizSync 30-50
VertRefresh 50

EDIT: I think you should install the latest nvidia drivers 8178 (use method 2 of my guide about the drivers). There are some users who complain about the same problem and it often depends on the driver version (and on your card)

dninja
December 30th, 2005, 12:32 PM
This works:

Section "Device"
Driver "nvidia"
Identifier "Device[1]"
Screen 0
Option "TVOutFormat" "SVIDEO"
Option "TVStandard" "PAL-I"
Option "ConnectedMonitor" "Monitor[1]"
BusID "PCI:1:0:0"
EndSection

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

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

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


I removed all references to the crt and changed the screen number to 0 and that seems to have fixed it.

I also found that if I don't have a monitor plugged in then all terminal output goes to the tv.

How can I tell how high resolution my TV will go? Could I break the tv if I push the resolution too high?

Now all I need to do is get it in colour. I'll try upgrading to the latest drivers and see what happens.

Thanks

dninja
December 30th, 2005, 01:10 PM
I've tried the latest version of the nvidia drivers (1.0-8178) and all is still black and white.

Something I did notice though is that the bios output is also in black and white so I'm wondering if it is something do do with the tv or the card. I've tried 2 different cables so it isn't the cable.

I'll try it with a different tv later and see.

Luzbel
December 30th, 2005, 01:34 PM
My problem is similar to dninja's. TV is B/W since BIOS starts, so I supposed it was the cable. I've not tested other TV yet. Thank you!

odinriko
December 31st, 2005, 03:04 AM
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.

I use an alias for mplayer that has these options
"mplayer -fs -display :0.1"
that should make it fullscreen on your tv

odinriko
December 31st, 2005, 03:06 AM
My problem is similar to dninja's. TV is B/W since BIOS starts, so I supposed it was the cable. I've not tested other TV yet. Thank you!
likely you have the cable setting wrong.

Option "TVOutFormat" "SVIDEO"
Change it to the type of cable you use. RGB, composite, and SVIDEO are the only options I know of.

odinriko
December 31st, 2005, 03:30 AM
Does anyone have recommendations on software that is readable/usable on a standard tv? Or is there some settings that I'm missing that makes text easier to read? I know there are interlacing problems with using a tv, but I am trying to find settings that will make it feasable to use only a tv on my system. (My monitor is about to die, and I don't have the cash to buy another one, so this is fairly mission critical to me)

tseliot
December 31st, 2005, 07:50 AM
Does anyone have recommendations on software that is readable/usable on a standard tv? Or is there some settings that I'm missing that makes text easier to read? I know there are interlacing problems with using a tv, but I am trying to find settings that will make it feasable to use only a tv on my system. (My monitor is about to die, and I don't have the cash to buy another one, so this is fairly mission critical to me)
Perhaps the resolution is too high for your tv. Try with 640x480 and 800x600.
I hope it helps.

dninja
December 31st, 2005, 10:44 AM
My problem is similar to dninja's. TV is B/W since BIOS starts, so I supposed it was the cable. I've not tested other TV yet. Thank you!
Just tried it on my better tv and I've got colour. The bios stuff is still in black and white but X is in colour. The picture quality is dreadful but I guess that is down to refresh rates. I'm desparatly trying to find my tv manual to find out what it can handle.

Something I do remember from the manual is that the tv has a svideo socket but there is a warning about not plugging computer equipment into it, possibly also mentioning a certain voltate (3v perhaps). With this vague description can anyone shed any light on svideo, voltages and what would happen if I stoped using my svideo to scart converter and plugged the svideo cable directly in?

Also, if anyone can suggest why one tv is black and white and the other colour with the same pc, cable and config then I'd be interested. Now I've started playing I'd like to get my main pc working with the tv that currently only does black and white so I can have movies playing while "working".

tseliot
December 31st, 2005, 01:09 PM
Just tried it on my better tv and I've got colour. The bios stuff is still in black and white but X is in colour. The picture quality is dreadful but I guess that is down to refresh rates. I'm desparatly trying to find my tv manual to find out what it can handle.

Something I do remember from the manual is that the tv has a svideo socket but there is a warning about not plugging computer equipment into it, possibly also mentioning a certain voltate (3v perhaps). With this vague description can anyone shed any light on svideo, voltages and what would happen if I stoped using my svideo to scart converter and plugged the svideo cable directly in?

Also, if anyone can suggest why one tv is black and white and the other colour with the same pc, cable and config then I'd be interested. Now I've started playing I'd like to get my main pc working with the tv that currently only does black and white so I can have movies playing while "working".

What's the model and brand of your TV (the one with black & white)?

dninja
December 31st, 2005, 02:47 PM
A ferguson 626/TX91 G GB.

tseliot
December 31st, 2005, 07:46 PM
A ferguson 626/TX91 G GB.
I can't find anything useful about it on the internet. Perhaps it's just the refresh rate.
Anyhow you should ask in the Unofficial Nvidia Forum http://www.nvnews.net/vbulletin/forumdisplay.php?s=&forumid=14

dninja
January 1st, 2006, 08:14 AM
A friend suggested that last night so I'll try it later, I know when I've tried running the PS2 at 60 rather than 50 the picture has been messed up.

dninja
January 1st, 2006, 10:14 AM
Sorted the pc and main telly. As I said before it was there and colour but with really bad picture quality. It was originally in scart socket AV1, if I changed it to AV2 the picture quality was perfect but black and white again, but by accident I found that when chosing AV2 I could also chose AV2S which gave picture quality and colour. I've no idea what the S stands for and what the differences between AV1, AV2 and AV2S are but I now have a nice clear picture in colour.

Just got to fix the Ferguson portable with the desktop PC and all is well.

lucidite
January 1st, 2006, 11:55 PM
Hi,

OK, so I've been playing with this for at least 5 hours & still can't seem to get it to work.

So here's what I've done so far:
Did all the modifications to xorg.conf that you mentionned. Rebooted my computer. Error message come up before I can get to the user-log-on GUI saying
"Failed to start the x server (your graphical interface) It is likely that it is not set up correctly. Would you like to view the x server output to diagnose the problem?"
Clicked on "Yes". Got another message that was similar to the first one, clicked on another "yes" button, got a terminal screen.
Thankfully I had followed your advice & backed up my previous xorg.conf file. I replaced the new file w/old one & rebooted. (and I was really, really happy to know the "sudo cp" command by heart!)

So I have this currently as my xorg.conf file:

# /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 "i2c"
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" "pc104"
Option "XkbLayout" "us"
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 "NVIDIA Corporation NV18 [GeForce4 MX 440 AGP 8x]"
Driver "nv"
BusID "PCI:1:0:0"
EndSection

Section "Monitor"
Identifier "MG-17X"
Option "DPMS"
HorizSync 31-80
VertRefresh 56-75
EndSection

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV18 [GeForce4 MX 440 AGP 8x]"
Monitor "MG-17X"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection



The odd thing is that when I rebooted by computer, my TV was showing everything fine until the loggon GUI, to which point all the screen does is show odd colours (pretty but useless...)
So my tv-out seems to kinda work... However as of now, I don't quite know what to do....

artnay
January 2nd, 2006, 04:04 AM
This is a basic trick when using two separate X instances. If you already have a file manager open (let's say Nautilus) in screen 0 (the primary monitor), you most probably don't want to navigate into same place in screen 1 just to click the movie file. This script should do it.

1. Open a text editor
2. Add the following lines:

# !/bin/sh
DISPLAY=:0.1 /usr/bin/gmplayer -fs "$*"

3. Save the document
4. Open Nautilus
5. Find something to watch, click it with the right mouse button
6. Choose "Open with", then choose "Open with another application"
7. Select "Use a custom command" and then type "sh /path/where/you/saved/document/that/you/created/in/phase3/document". Then press "Open".

Now the movie should start in fullscreen mode in screen 1. This script should be visible in "Other Application" menu after you've used it once. This script assumes you have a symlink called gmplayer in your /usr/bin, but you can change it to whatever player you want. Hope it saves your time and nerves.

lucidite
January 2nd, 2006, 04:13 AM
Thanks for that, and I will be using that tip, however I still have my initial problem: my TV screen doesn't show anything coherant.
I know it works, since the TV shows the first screens and the booting up of Ubuntu, however when the loggon GUI comes up, the screen becomes, well, an odd mixture of pigments and colours. Nothing like my screen. And it doesn't seem to have created a second "screen" -- when it shows stuff, it shows what's on my monitor.

tseliot
January 2nd, 2006, 06:41 AM
Hi,

OK, so I've been playing with this for at least 5 hours & still can't seem to get it to work.

So here's what I've done so far:
Did all the modifications to xorg.conf that you mentionned. Rebooted my computer. Error message come up before I can get to the user-log-on GUI saying
"Failed to start the x server (your graphical interface) It is likely that it is not set up correctly. Would you like to view the x server output to diagnose the problem?"
Clicked on "Yes". Got another message that was similar to the first one, clicked on another "yes" button, got a terminal screen.
Thankfully I had followed your advice & backed up my previous xorg.conf file. I replaced the new file w/old one & rebooted. (and I was really, really happy to know the "sudo cp" command by heart!)

So I have this currently as my xorg.conf file:

# /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 "i2c"
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" "pc104"
Option "XkbLayout" "us"
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 "NVIDIA Corporation NV18 [GeForce4 MX 440 AGP 8x]"
Driver "nv"
BusID "PCI:1:0:0"
EndSection

Section "Monitor"
Identifier "MG-17X"
Option "DPMS"
HorizSync 31-80
VertRefresh 56-75
EndSection

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV18 [GeForce4 MX 440 AGP 8x]"
Monitor "MG-17X"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection



The odd thing is that when I rebooted by computer, my TV was showing everything fine until the loggon GUI, to which point all the screen does is show odd colours (pretty but useless...)
So my tv-out seems to kinda work... However as of now, I don't quite know what to do....
You do not seem to have the nvidia drivers installed.
Please install them.

lucidite
January 2nd, 2006, 01:11 PM
Did that, and received another error message, similar to the first one. When my computer booted up, got the "Failed to start the x server (your graphical interface). It is likely that it is not set up correctly ."
Redid the same thing that I had done previously to fix problem (copy the old xorg.conf_backup to replace the new one) and it fixed the problem...

tseliot
January 2nd, 2006, 02:42 PM
Did that, and received another error message, similar to the first one. When my computer booted up, got the "Failed to start the x server (your graphical interface). It is likely that it is not set up correctly ."
Redid the same thing that I had done previously to fix problem (copy the old xorg.conf_backup to replace the new one) and it fixed the problem...
You need the drivers. You might:
1) Follow EVERY step of my guide HOWTO: Latest NVIDIA drivers (http://www.ubuntuforums.org/showthread.php?t=75074)
2) Post the output of the error in that thread so that I can help you.
In other words you have to:
set the driver to "nvdia" in your /etc/X11/xorg.conf instead of "nv".
then do this thing for me:
Press CTRL+ALT+F1 (you will only see the command line)
sudo /etc/init.d/gdm stop (if you use GDM)
OR
sudo /etc/init.d/kdm stop (if you use kDM)
startx -- -verbose 5 -logverbose 5

and post the output (which you can find under /var/log/Xorg.0.log ).

NOTE:
If you can't us the Graphical interface any more try this:
then type sudo nano /etc/X11/xorg.conf
and set the driver back to "nv" (instead of "nvidia")
Then
CTRL+O to save
CTRL+X to exit
type "startx" and everything will work again

lucidite
January 2nd, 2006, 03:25 PM
So I re-installed the drivers and this time it worked, however my "screen" is larger then my monitor. In other words, it almost seems as if my desktop is almost twice the size of my monitor. Is that normal?

Did what you asked and tried to post my /var/log/Xorg.0.log however it's too long for a single post and instead of dividing it up into many, many posts, is there something in particular I need to look for & post?

And thank you for your help!

tseliot
January 2nd, 2006, 07:33 PM
So I re-installed the drivers and this time it worked, however my "screen" is larger then my monitor. In other words, it almost seems as if my desktop is almost twice the size of my monitor. Is that normal?
No, it's not normal. It's likely that the monitor was not set up correctly. So that the xserver tries to apply a resolution which is larger than your monitor (according to settings) supports.
1) Post your xorg.conf
2) Post the refresh rate (vertical and horizontal) of your monitor (have a look at its manual or at the the specs provided on the website of the manufacturer of your monitor).

Did what you asked and tried to post my /var/log/Xorg.0.log however it's too long for a single post and instead of dividing it up into many, many posts, is there something in particular I need to look for & post?

And thank you for your help!
Well then post only the lines which begin with "(WW)"

lucidite
January 2nd, 2006, 10:15 PM
1) Here's my xorg.conf file

# /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 "i2c"
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" "pc104"
Option "XkbLayout" "us"
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 "NVIDIA Corporation NV18 [GeForce4 MX 440 AGP 8x]"
Driver "nvidia"
BusID "PCI:1:0:0"
EndSection

Section "Monitor"
Identifier "MG-17X"
Option "DPMS"
HorizSync 31-80
VertRefresh 56-75
EndSection

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV18 [GeForce4 MX 440 AGP 8x]"
Monitor "MG-17X"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection

2) I checked the manufacturer's web page and they didn't have anything about refresh rates but they did have something about frequency. Don't know if it's pertinent but I have an LCD monitor (X2 Gen MG-17X to be exact...):
VERTICAL FREQUENCY 56 ~ 75 Hz
HORIZONTAL FREQUENCY 31 ~ 80 Khz

3) And here are the sections from my /var/log/Xorg.0.log file that start with ww:

(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").
... some more stuff ...
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
... some more stuff ...
(WW) Ignoring request to load module GLcore
... some more stuff ...
(WW) NVIDIA(0): Multiple displays connected, but only one display allowed;
(WW) NVIDIA(0): using first display
... some more stuff ...
(WW) (1600x1200,MG-17X) mode clock 162MHz exceeds DDC maximum 140MHz
... some more stuff ...
(WW) (1400x1050,MG-17X) mode clock 151MHz exceeds DDC maximum 140MHz
... some more stuff ...
(WW) (1680x1050,MG-17X) mode clock 147.14MHz exceeds DDC maximum 140MHz
(WW) (1920x1200,MG-17X) mode clock 193.16MHz exceeds DDC maximum 140MHz
... some more stuff ...
(WW) NVIDIA(0): Not using mode "960x600" (height 1200 is larger than
(WW) NVIDIA(0): EDID-specified maximum 1024)
(WW) NVIDIA(0): Not using mode "800x600" (height 1200 is larger than
(WW) NVIDIA(0): EDID-specified maximum 1024)
(WW) NVIDIA(0): Not using mode "840x525" (height 1050 is larger than
(WW) NVIDIA(0): EDID-specified maximum 1024)
(WW) NVIDIA(0): Not using mode "700x525" (height 1050 is larger than
(WW) NVIDIA(0): EDID-specified maximum 1024)
(WW) NVIDIA(0): Not using mode "700x525" (height 1050 is larger than
(WW) NVIDIA(0): EDID-specified maximum 1024)

tseliot
January 3rd, 2006, 08:00 AM
1) Here's my xorg.conf file
...
Section "Module"
Load "GLcore"
Load "i2c"
Load "bitmap"
Load "ddc"
#Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "type1"
Load "vbe"
EndSection

Section "Device"
Identifier"NVIDIA Corporation NV18 [GeForce4 MX 440 AGP 8x]"
Driver"nvidia"
BusID"PCI:1:0:0"
Option "UseEdidFreqs" "False"
EndSection
...

Apply the corrections in red. Then log out and press CTRL+ALT+BACKSPACE. Tell me if it fixes the resolution problem.

2) I checked the manufacturer's web page and they didn't have anything about refresh rates but they did have something about frequency. Don't know if it's pertinent but I have an LCD monitor (X2 Gen MG-17X to be exact...):
VERTICAL FREQUENCY 56 ~ 75 Hz
HORIZONTAL FREQUENCY 31 ~ 80 Khz

Refresh rate or frequency is the same. Ok now we are sure the correct frequencies are set.

3) And here are the sections from my /var/log/Xorg.0.log file that start with ww:
...

Which resolution do you need to use?

lucidite
January 3rd, 2006, 08:50 AM
Apply the corrections in red. Then log out and press CTRL+ALT+BACKSPACE. Tell me if it fixes the resolution problem.


Made the modifications, rebooted and it didn't work. Well, at least it doesn't seem like it. My windows can still be dragged out of my monitor.

Which resolution do you need to use?

As for the resolution, this is what the manufacturer's webpage had to say:
RESOLUTION 1280 x 1024

tseliot
January 3rd, 2006, 09:13 AM
Made the modifications, rebooted and it didn't work. Well, at least it doesn't seem like it. My windows can still be dragged out of my monitor.



As for the resolution, this is what the manufacturer's webpage had to say:
RESOLUTION 1280 x 1024
If you want to fix your problems with your screen resolution you can follow this awesome guide: HOWTO: change resolution/refresh rate in Xorg (http://ubuntuforums.org/showthread.php?t=83973&highlight=resolution)

lucidite
January 5th, 2006, 01:23 AM
If you want to fix your problems with your screen resolution you can follow this awesome guide: HOWTO: change resolution/refresh rate in Xorg (http://ubuntuforums.org/showthread.php?t=83973&highlight=resolution)

Figured out that it was just me not knowing how to configure my desktop. (I'm kinda new at this whole configuring thing...)

With the new drivers, now everything seems to work. (yay!)

Thank you very much for your help & patience.

mflash
January 10th, 2006, 08:59 AM
Sorted the pc and main telly. As I said before it was there and colour but with really bad picture quality. It was originally in scart socket AV1, if I changed it to AV2 the picture quality was perfect but black and white again, but by accident I found that when chosing AV2 I could also chose AV2S which gave picture quality and colour. I've no idea what the S stands for and what the differences between AV1, AV2 and AV2S are but I now have a nice clear picture in colour.

Just got to fix the Ferguson portable with the desktop PC and all is well.

I'd just like to add that I have a similar setup, but my telly has only a single
SCART socket. Then I have to select AV-S (instead of AV) to get colour.
Guess AV-S means S-VIDEO ? (BTW, it's a Ferguson as well)

dninja
January 10th, 2006, 09:44 AM
I've fixed it!

I had got the media PC working and given up on getting the portable working with my desktop but mflashs mail spured me on again.

I've found the hidden menu option to get it to use AV-S rather than plain old AV. I've now got perfect quality output running on my tv. I've just got to find a way to get the tv save the setting.

Dagur
February 1st, 2006, 05:14 PM
Hi, quick question.

I'm not going to be using my tv-out much and my tv will be unplugged most of the time (too few inputs). This is a problem because if I boot with my tv unplugged I just get a blank screen on my monitor.
So is it possible to switch to tv-out only when needed or make my monitor work even if the tv-out isn't plugged in?

cheers

dninja
February 2nd, 2006, 05:25 AM
I'm in a similar position so I declared my LCD monitor as the main one and positioned the tv above it so that when the tv was on I could slip the mouse off the top of the screen to reach it. Having it left or right I kept disappearing off when I didn't want to.

With this setup everything works fine, no blank screens. Try this:


Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "LCDScreen"
Screen 1 "TVScreen" Above "LCDScreen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

aToS
February 8th, 2006, 12:58 PM
Hi, I have some problem with this...
My Xorg.conf (http://atos.uw.hu/logs/xorg.conf)
And the log (http://atos.uw.hu/logs/xorg.log)

Thx for help

*** There are two warnings, but I couldn't do anything with them...

mo_x
February 8th, 2006, 02:37 PM
You are using the nv driver instead of the nvidia driver.
Also the ConnectedMonitor option is used wrong.

tseliot
February 8th, 2006, 03:50 PM
Hi, I have some problem with this...
My Xorg.conf (http://atos.uw.hu/logs/xorg.conf)
And the log (http://atos.uw.hu/logs/xorg.log)

Thx for help

*** There are two warnings, but I couldn't do anything with them...
I agree with mo_x.
You should install the nvidia drivers (see the link to my guide in my signature)
Moreover your option should be
Option "ConnectedMonitor" "TV"

gizm0
February 9th, 2006, 12:20 PM
I have installed newest nvidia drivers and i have amd64 kernel.

I have tried severaly to install TV-out for my Nvidia geforce 6600, but haven't got any luck with it. I checked the cables and cables are ok, because tv can get it's signal when i'm using windows xp.

I only got it working once, but then my LCD-screen didn't work. At the point when i got LCD-screen to work then my TV-screen didn't work.

Also i have noticed that my cursor can be scrolled all away to the next screen, but the TV-screen is still blank.

tseliot
February 9th, 2006, 05:22 PM
I have installed newest nvidia drivers and i have amd64 kernel.

I have tried severaly to install TV-out for my Nvidia geforce 6600, but haven't got any luck with it. I checked the cables and cables are ok, because tv can get it's signal when i'm using windows xp.

I only got it working once, but then my LCD-screen didn't work. At the point when i got LCD-screen to work then my TV-screen didn't work.

Also i have noticed that my cursor can be scrolled all away to the next screen, but the TV-screen is still blank.
You have to find this part:
Option "ConnectedMonitor" "TV"

and make it look like this:
Option "ConnectedMonitor" "Monitor[1]"

gizm0
February 10th, 2006, 07:37 AM
Ok....now i have fixed that line and rebooted computer, but it still does not work :(.

Any ideas? Cables are ok...i checked cables with my other computer and windows xp.

tseliot
February 10th, 2006, 07:40 AM
Ok....now i have fixed that line and rebooted computer, but it still does not work :(.

Any ideas? Cables are ok...i checked cables with my other computer and windows xp.
Turn on your computer with the TV-OUT cable UNPLUGGED.

Then when you get to the login screen plug the cable in and press CTRL+ALT+Backspace.

Then login and an something should appear on your TV

gizm0
February 10th, 2006, 09:16 AM
I noticed few mix ups, when i turned the computer on (without the TV cable plugged in):
-TV-screen didn't work at the start
-LCD-screen had TV resolution on (so it was thinking that my LCD-screen is TV-screen)
-when i pressed alt-ctrl-backspace the LCD-screen turned to normal and TV-screen didn't do anything (just blinked one or two times)

tseliot
February 10th, 2006, 09:32 AM
I noticed few mix ups, when i turned the computer on (without the TV cable plugged in):
-TV-screen didn't work at the start
-LCD-screen had TV resolution on (so it was thinking that my LCD-screen is TV-screen)
-when i pressed alt-ctrl-backspace the LCD-screen turned to normal and TV-screen didn't do anything (just blinked one or two times)
Try to remove this option:
Option "ConnectedMonitor" "DFP"

then log out and press CTRL+ALT+Backspace

gizm0
February 10th, 2006, 09:54 AM
Ok now it works, but i got new problem :D.

My LCD-screen is showing TV-resolution and TV-screen is showing LCD-resolution.

How to fix this problem?

And thanks for the help. I couldn't have done this without a help :).

tseliot
February 10th, 2006, 10:46 AM
Ok now it works, but i got new problem :D.

My LCD-screen is showing TV-resolution and TV-screen is showing LCD-resolution.

How to fix this problem?

And thanks for the help. I couldn't have done this without a help :).
Perhaps the resolution for your TV is too low. Make it look like this:
Section "Screen"
Device "Device[1]"
Identifier "Screen[1]"
Monitor "Monitor[1]"
DefaultDepth 16
SubSection "Display"
Depth 16
Modes "1024x768"
EndSubSection

then log out and press CTRL+ALT+Backspace

IF (and ONLY IF) that doesn't solve the problem you can try this:

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

Section "Screen"
Device "Device[1]"
Identifier "Screen[1]"
Monitor "Monitor[0]"
DefaultDepth 16
SubSection "Display"
Depth 16
Modes "1024x768"
EndSubSection
EndSection

gizm0
February 10th, 2006, 10:49 AM
Thanks!

I will try that later on today :).

gizm0
February 10th, 2006, 12:52 PM
I tried the solution for that but it didn't change anything. The problem is that my login screen etc. is on the TV-screen. Even though i change the resolution it wont put the login screen on my LCD-screen

So the problem is that Ubuntu think my LCD-screen is the second screen (not the primary).

tseliot
February 10th, 2006, 01:35 PM
I tried the solution for that but it didn't change anything. The problem is that my login screen etc. is on the TV-screen. Even though i change the resolution it wont put the login screen on my LCD-screen

So the problem is that Ubuntu think my LCD-screen is the second screen (not the primary).
Ok, remove my 2nd suggestion (those which came after "IF (and ONLY IF) that doesn't solve the problem you can try this")

And remove this option:
Option "ConnectedMonitor" "Monitor[1]"

then log out and press CTRL+ALT+Backspace

gizm0
February 10th, 2006, 01:48 PM
Nope it didn't work. Any more suggestions?

Btw. nothing didn't change and here is the new config file in the attachment

tseliot
February 10th, 2006, 03:02 PM
Ok....now i have fixed that line and rebooted computer, but it still does not work :(.

Any ideas? Cables are ok...i checked cables with my other computer and windows xp.
Remember not to boot (EVER) with the TV-OUT calbe plugged in.

The xorg.conf looks ok.

There are some users who can't use the Nvidia Tv-OUT (not only in Ubuntu).

If the TV-OUT doesn't work for you you can try Nvidia Twinview (there is a guide on this forum)

gizm0
February 10th, 2006, 04:41 PM
k i will try again tomorrow, to figure out the problem.

thank anyways :).

isTHEr3mOr3
February 24th, 2006, 05:27 PM
Hi all,

I've spend hours getting tv-out to work. It works on windows but I can't get it working on Linux. My card: NVIDIA GeForce2 MX/MX 400
I want to clone the desktop to the tv.

This is the xorg.conf I think should work, but there's no TV-image at all.
Hope someone can help me here.

Thanks.

# /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 "i2c"
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" "pc104"
Option "XkbLayout" "us"
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 "Monitor"
Identifier "Belinea10153"
Option "DPMS"
HorizSync 30-81
VertRefresh 56-76
EndSection



Section "Device"
Identifier "NVIDIA Corporation NV11 [GeForce2 MX/MX 400]"
Driver "nvidia"
BusID "PCI:1:0:0"
Option "TVStandard" "PAL-B"
Option "TVOutFormat" "COMPOSITE"
Option "TwinView" "true"
Option "TwinViewOrientation" "Clone"
Option "SecondMonitorHorizSync" "30-50"
Option "SecondMonitorVertRefresh" "60"
Option "MetaModes" "1024x768,1024x768;800x600,800x600;640x480,640x480"
Option "ConnectedMonitor" "CRT, TV"
EndSection


Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV11 [GeForce2 MX/MX 400]"
Monitor "Belinea10153"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection

EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection

tseliot
February 24th, 2006, 06:00 PM
I want to clone the desktop to the tv.
If you want to do that try this guide:
http://www.ubuntuforums.org/showthread.php?t=85769&highlight=twinview

isTHEr3mOr3
February 24th, 2006, 06:46 PM
Thank you for your reply, but I can't get anything on my TV so if you can help me with another solution it's ok too.
The twinview link doesn't help me, it describes connecting 2 monitors and that's not my problem.

I've tried a lot of xorg samples and I think I know how it works, but obviously I'm missing something.

tseliot
February 24th, 2006, 06:50 PM
Thank you for your reply, but I can't get anything on my TV so if you can help me with another solution it's ok too.
The twinview link doesn't help me, it describes connecting 2 monitors and that's not my problem.

I've tried a lot of xorg samples and I think I know how it works, but obviously I'm missing something.
Pretend your TV is a 2nd monitor and follow that guide (I've tried it and it worked)

mcpish
February 25th, 2006, 01:32 AM
I've used this guide and it works perfectly on my GeForce 6200 with S-Video out. Thank you.

I now have it setup exactly the way I want.

I setup a custom background wallpaper to display on the TV-Only desktop (the classic bars test-pattern to ensure the colors are accurate on the TV). Then I removed the KDE application panel from the TV-desktop so that only my wallpaper shows on the TV without anything else (the TV color bar test pattern) when I'm not playing a video file. I also copied the script recommended earlier and now I can just right-click on any video file and choose a new "television" option I created in the drop-down menu and the video will start playing automatically in full-screen on the TV (using mplayer) while I remain on my desktop on the PC monitor. After configuring the TV-desktop I removed the "leftof" section of the xorg.conf file and rebooted so that the mouse doesn't traverse desktops but always sticks on the PC desktop now. I only use the TV for playing video files and for that I just simply use the method above to instantly send any video file to the TV. After a file is done playing, the TV simply goes back to the Test Pattern.

tseliot
February 25th, 2006, 05:04 AM
I've used this guide and it works perfectly on my GeForce 6200 with S-Video out. Thank you.

I now have it setup exactly the way I want.

I setup a custom background wallpaper to display on the TV-Only desktop (the classic bars test-pattern to ensure the colors are accurate on the TV). Then I removed the KDE application panel from the TV-desktop so that only my wallpaper shows on the TV without anything else (the TV color bar test pattern) when I'm not playing a video file. I also copied the script recommended earlier and now I can just right-click on any video file and choose a new "television" option I created in the drop-down menu and the video will start playing automatically in full-screen on the TV (using mplayer) while I remain on my desktop on the PC monitor. After configuring the TV-desktop I removed the "leftof" section of the xorg.conf file and rebooted so that the mouse doesn't traverse desktops but always sticks on the PC desktop now. I only use the TV for playing video files and for that I just simply use the method above to instantly send any video file to the TV. After a file is done playing, the TV simply goes back to the Test Pattern.
Thanks for reporting

eskomorko
March 16th, 2006, 02:45 PM
I've used this guide and it works perfectly on my GeForce 6200 with S-Video out. Thank you.

I now have it setup exactly the way I want.

I setup a custom background wallpaper to display on the TV-Only desktop (the classic bars test-pattern to ensure the colors are accurate on the TV). Then I removed the KDE application panel from the TV-desktop so that only my wallpaper shows on the TV without anything else (the TV color bar test pattern) when I'm not playing a video file. I also copied the script recommended earlier and now I can just right-click on any video file and choose a new "television" option I created in the drop-down menu and the video will start playing automatically in full-screen on the TV (using mplayer) while I remain on my desktop on the PC monitor. After configuring the TV-desktop I removed the "leftof" section of the xorg.conf file and rebooted so that the mouse doesn't traverse desktops but always sticks on the PC desktop now. I only use the TV for playing video files and for that I just simply use the method above to instantly send any video file to the TV. After a file is done playing, the TV simply goes back to the Test Pattern.

I use the same method. Only downside is that I cant pause or stop the video, because I also removed leftof thingie from xorg.conf (dont like when mouse dissappears to tv screen when tv is not on).

Is it possible to use both screens without having to move the cursor from screen to screen. For example a shortcut key, which selects between screens. Its hard to explain when you dont speak english natively, but I hope you understand what I mean. ;)

tseliot
March 16th, 2006, 05:46 PM
I use the same method. Only downside is that I cant pause or stop the video, because I also removed leftof thingie from xorg.conf (dont like when mouse dissappears to tv screen when tv is not on).

Is it possible to use both screens without having to move the cursor from screen to screen. For example a shortcut key, which selects between screens. Its hard to explain when you dont speak english natively, but I hope you understand what I mean. ;)
I understand what you mean (I'm Italian) but the only thing I can suggest you is to have a look at this guide for Gentoo:
http://gentoo-wiki.com/HOWTO_Dual_Monitors

Then look for the "Moving focus between screens" section. There is a little app there which I haven't tried myself which should enable you to switch between screens.

Then you should look for a guide on the Ubuntu forums about key bindings in GNOME.

I wish I had the time to write a guide about that :(

redcell
April 3rd, 2006, 07:53 AM
I've used this guide and it works perfectly on my GeForce 6200 with S-Video out. Thank you.

I now have it setup exactly the way I want.

I setup a custom background wallpaper to display on the TV-Only desktop (the classic bars test-pattern to ensure the colors are accurate on the TV). Then I removed the KDE application panel from the TV-desktop so that only my wallpaper shows on the TV without anything else (the TV color bar test pattern) when I'm not playing a video file. I also copied the script recommended earlier and now I can just right-click on any video file and choose a new "television" option I created in the drop-down menu and the video will start playing automatically in full-screen on the TV (using mplayer) while I remain on my desktop on the PC monitor. After configuring the TV-desktop I removed the "leftof" section of the xorg.conf file and rebooted so that the mouse doesn't traverse desktops but always sticks on the PC desktop now. I only use the TV for playing video files and for that I just simply use the method above to instantly send any video file to the TV. After a file is done playing, the TV simply goes back to the Test Pattern.

I also used this guide with my Geforce 5200 and S-Video out, and it works perfectly, thnx

I was wondering how to remove the KDE application panel (kicker) from the TV-desktop, as you discribed in the above post.

redcell
April 3rd, 2006, 07:57 AM
I've used this guide and it works perfectly on my GeForce 6200 with S-Video out. Thank you.

I now have it setup exactly the way I want.

I setup a custom background wallpaper to display on the TV-Only desktop (the classic bars test-pattern to ensure the colors are accurate on the TV). Then I removed the KDE application panel from the TV-desktop so that only my wallpaper shows on the TV without anything else (the TV color bar test pattern) when I'm not playing a video file. I also copied the script recommended earlier and now I can just right-click on any video file and choose a new "television" option I created in the drop-down menu and the video will start playing automatically in full-screen on the TV (using mplayer) while I remain on my desktop on the PC monitor. After configuring the TV-desktop I removed the "leftof" section of the xorg.conf file and rebooted so that the mouse doesn't traverse desktops but always sticks on the PC desktop now. I only use the TV for playing video files and for that I just simply use the method above to instantly send any video file to the TV. After a file is done playing, the TV simply goes back to the Test Pattern.

I also used this guide with my Geforce 5200 and S-Video out, and it works perfectly, thnx

I was wondering how to remove the KDE application panel (kicker) from the TV-desktop, as you discribed in the above post, because Kicker uses about 30MB of ram.

km0ti0n
April 3rd, 2006, 11:03 AM
Thanks tseliot for a great thread, I was able to get my nvida drivers running perfectally so that I could adjust the contract and gamma settings that I always need to mod.

I have a GeForce FX 5200 card and I am havign trouble getting Dual head/Multi view to work.

Does anyone have a working xorg.cong as I have seen many and none are particularly similar.

This is my current config file. Any help is greatly appricated.

# /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 "i2c"
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" "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

Section "Device"
Identifier "NVIDIA Corporation NV34 [GeForce FX 5200]"
Driver "nvidia"
BusID "PCI:1:0:0"
EndSection

Section "Monitor"
Identifier "HP D2837"
Option "DPMS"
EndSection

Section "Monitor"
Identifier "DELL"
Option "DPMS"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV34 [GeForce FX 5200]"
Monitor "HP D2837"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1600×1200" "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection



Thanks

tseliot
April 4th, 2006, 04:57 AM
Thanks tseliot for a great thread, I was able to get my nvida drivers running perfectally so that I could adjust the contract and gamma settings that I always need to mod.

I have a GeForce FX 5200 card and I am havign trouble getting Dual head/Multi view to work.

Does anyone have a working xorg.cong as I have seen many and none are particularly similar.

This is my current config file. Any help is greatly appricated.
If you need to use multiple monitors you should use this guide:
http://www.ubuntuforums.org/showthread.php?t=85769&highlight=nvidia+twinview

Or this one (which is related to Gentoo Linux)
http://gentoo-wiki.com/HOWTO_Dual_Monitors

km0ti0n
April 4th, 2006, 05:12 AM
Thanks for the reply,

Sorry to have wasted your time, I had just found that howto and managed to get my dual head working nicely.

Thanks again.

Ensnared
April 7th, 2006, 03:26 PM
Follwing this howto made my TV-out work nicely, thanks :) Things like this helps when you've been using ATI for a decade and just now switched to something better ;)

I do have one question though - is there any way to get a widescreen resolution on my TV? I have a 32" Panasonic widescreen CRT TV, but the only resolution I get on it is 1024x768 but I'm fairly certain that the TV itself supports 1366x768 like most 32" widescreen TV's do. I tried entering that as the resolution under the Screen section for the TV (Device[1]/Monitor[1]) but that didn't help.

My board is an nVidia Geforce 6200 256MB, and I'm using the latest drivers on Dapper.

The (as far as I know) relevant lines my Xorg logfile is:
(**) 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" "Monitor[1]"
(**) NVIDIA(1): Option "TVStandard" "PAL-B"
(**) NVIDIA(1): Option "TVOutFormat" "Composite"
(**) NVIDIA(1): Forcing COMPOSITE video output
(**) NVIDIA(1): ConnectedMonitor string: "Monitor[1]"
(WW) NVIDIA(1): Invalid ConnectedMonitor string token: "Monitor[1]";
(WW) NVIDIA(1): discarding token.
(**) NVIDIA(1): TV Standard string: "PAL-B"
(--) NVIDIA(1): Linear framebuffer at 0xD0000000
(--) NVIDIA(1): MMIO registers at 0xE2000000
(II) NVIDIA(1): NVIDIA GPU detected as: GeForce 6200
(--) NVIDIA(1): VideoBIOS: 05.44.a2.07.00
(--) NVIDIA(1): Interlaced video modes are supported on this GPU
(II) NVIDIA(1): Detected AGP rate: 8X
(--) NVIDIA(1): VideoRAM: 262144 kBytes
(II) NVIDIA(1): Connected display device(s): CRT-0, TV-0
(--) NVIDIA(1): Detected TV Encoder: NVIDIA
(--) NVIDIA(1): TV-0: maximum pixel clock: 400 MHz
(II) NVIDIA(1): Frequency information for TV-0:
(II) NVIDIA(1): HorizSync : 30.000-50.000 kHz
(II) NVIDIA(1): VertRefresh : 60.000 Hz
(II) NVIDIA(1): (HorizSync from HorizSync in X Config Monitor section)
(II) NVIDIA(1): (VertRefresh from VertRefresh in X Config Monitor
(II) NVIDIA(1): section)
(II) NVIDIA(1): Monitor[1]: Using hsync range of 30.00-50.00 kHz
(II) NVIDIA(1): Monitor[1]: Using vrefresh value of 60.00 Hz
(II) NVIDIA(1): Clock range: 12.00 to 400.00 MHz
<removed several "not using default mode" lines due to vrefresh and hsync being out of range>
(II) NVIDIA(1): Not using mode "1366x768" (no mode of this name)
(WW) NVIDIA(1): Not using mode "1280x800" (not a valid TV mode)
(WW) NVIDIA(1): Not using mode "1280x768" (not a valid TV mode)
(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
(WW) NVIDIA(1): Unable to get display device TV-0's EDID; cannot compute DPI
(WW) NVIDIA(1): from EDID.
(==) NVIDIA(1): DPI set to (75, 75); computed from built-in default

This is my xorg.conf:
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 1.0 (buildmeister@builder3) Wed Dec 14 16:39:22 PST 2005


Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen[0]"
Screen 1 "Screen[1]" RightOf "Screen[0]"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection

Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "/usr/X11R6/lib/X11/fonts/misc/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
EndSection

Section "Module"
# Load "GLcore"
Load "i2c"
Load "bitmap"
Load "dbe"
Load "ddc"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "record"
Load "type1"
Load "vbe"
EndSection

Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
Option "Buttons" "6"
EndSection

#Section "InputDevice"
# Identifier "Mouse0"
# Driver "mouse"
# Option "Protocol" "evdev"
# Option "Dev Name" "Logitech USB-PS/2 Mouse M-BA47"
# Option "Dev Phys" "usb-0000:00:02.1-2/input0"
# Option "Device" "/dev/input/event1"
# Option "Buttons" "6"
# Option "ZAxisMapping" "4 5"
#EndSection

Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "no"
EndSection

Section "Monitor"
Identifier "Monitor[0]" # CRT Monitor
VendorName "Iiyama"
ModelName "HM903DTA"
Option "DPMS"
HorizSync 30.0 - 132.0
VertRefresh 45.0 - 200.0
EndSection

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

Section "Device"
Identifier "Device[0]"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BusID "PCI:3:0:0"
Option "RenderAccel" "true"
Option "AllowGLXWithComposite" "true"
Screen 0
EndSection

Section "Device"
Driver "nvidia"
Identifier "Device[1]"
Screen 1
Option "TVOutFormat" "Composite" #or SVIDEO etc
Option "TVStandard" "PAL-B" #or NTSC etc
Option "ConnectedMonitor" "Monitor[1]"
BusID "PCI:3:0:0"
EndSection

Section "Screen"
Identifier "Screen[0]"
Device "Device[0]"
Monitor "Monitor[0]"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

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

Section "Extensions"
Option "Composite" "Enable"
EndSection

So is there any way to make it work, or is this perhaps a limitation of the driver itself?

SSamiK
April 16th, 2006, 06:53 AM
Thanks for a great HOWTO! Worked like a charm with my GeForce4 Ti4200. :D


Just a few things....

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?

Is it a way to do this? I have a nautilus-script (http://ubuntuforums.org/showpost.php?p=378322&postcount=54) witch allows me to rigth-click a file and display it on the TV in fullscreen, but i would like to remove the menus and maby even the wallpaper, as they are of no use.

Secondly, i used to have running programs displayed on the gnome panel when minimized, but now they just vanish and i need to use the TAB button to find them again... Not a big deal, but annoying. Anyone who knows what causes this, and how to fix it?

Last but not least: Is there a way to be able to drag a open program (and/or files), from the monitor over to the tv? As of now, programs and files stop at the right end of my monitor and only the mousepointer move over to the TV.

ralin
April 16th, 2006, 05:06 PM
I followed the guide and my TV shows ubuntu starting up, shows the nvidia logo, and then it shows that grey screen that pops up right before the logon screen. But it stays stuck there. I have tried several different settigns to get it to work but i cant seem to be able to get anything other than a grey screen on the tv. i can move my mouse off the right side of my lcd desktop, so the server section seems to be working right. i think its probably something wrong with how i setup the tv as a monitor in my xorg.conf. im running dapper flight 6 with xgl and compiz (it dosent work even i change to a normal session) but that could be causing alot of the problems. It also prevents me form useing twinview.

here is my xorg.conf:

tseliot
April 16th, 2006, 05:25 PM
Follwing this howto made my TV-out work nicely, thanks :) Things like this helps when you've been using ATI for a decade and just now switched to something better ;)

I do have one question though - is there any way to get a widescreen resolution on my TV? I have a 32" Panasonic widescreen CRT TV, but the only resolution I get on it is 1024x768 but I'm fairly certain that the TV itself supports 1366x768 like most 32" widescreen TV's do. I tried entering that as the resolution under the Screen section for the TV (Device[1]/Monitor[1]) but that didn't help.

My board is an nVidia Geforce 6200 256MB, and I'm using the latest drivers on Dapper.
Try this guide:
http://ubuntuforums.org/showthread.php?t=83973&highlight=resolution

tseliot
April 16th, 2006, 05:30 PM
Is it a way to do this? I have a nautilus-script (http://ubuntuforums.org/showpost.php?p=378322&postcount=54) witch allows me to rigth-click a file and display it on the TV in fullscreen, but i would like to remove the menus and maby even the wallpaper, as they are of no use.
Can't you do that? You should have 2 distinct desktops

Secondly, i used to have running programs displayed on the gnome panel when minimized, but now they just vanish and i need to use the TAB button to find them again... Not a big deal, but annoying. Anyone who knows what causes this, and how to fix it?
Right click on the gnome panel and add the taskbar.

Last but not least: Is there a way to be able to drag a open program (and/or files), from the monitor over to the tv? As of now, programs and files stop at the right end of my monitor and only the mousepointer move over to the TV.
I don't know if it's possible. I usually open an application on the same display I need to use it.

tseliot
April 16th, 2006, 05:35 PM
I followed the guide and my TV shows ubuntu starting up, shows the nvidia logo, and then it shows that grey screen that pops up right before the logon screen. But it stays stuck there. I have tried several different settigns to get it to work but i cant seem to be able to get anything other than a grey screen on the tv. i can move my mouse off the right side of my lcd desktop, so the server section seems to be working right. i think its probably something wrong with how i setup the tv as a monitor in my xorg.conf. im running dapper flight 6 with xgl and compiz (it dosent work even i change to a normal session) but that could be causing alot of the problems. It also prevents me form useing twinview.

here is my xorg.conf:
Your xorg.conf seems ok (I'm saying "seems" bacause I've slept only 4 hours)

I haven't tried this guide with Dapper yet. I really wouldn't know how to help you.

Perhaps on the Unofficial Nvidia Forums they'll be able to help you

ralin
April 16th, 2006, 05:49 PM
Your xorg.conf seems ok (I'm saying "seems" bacause I've slept only 4 hours)

I haven't tried this guide with Dapper yet. I really wouldn't know how to help you.

Perhaps on the Unofficial Nvidia Forums they'll be able to help you

thanks for taking a look. at least i know im not makeing some silly mistake

Titus A Duxass
April 17th, 2006, 04:32 AM
Hello all,
I have just read this thread from start to end, unfortunately I am now totally confused as to which part of the how-to applies to me.

I want to set-up my pc to my tv only, I do not need or want another monitor (though I can connect one if necessary to assist with the set-up).

I am based in Germany so my tv is PAL-B (I think).

I am connecting via a SVIDEO (or is that S-VIDEO) and at present I have the ubuntu desktop on the tv but with terrrible colour renditioning (bright, garish colours and barely readable text) and it is to big.

My xorg.conf is a normally generated one, i.e. I have not carried out any changes as per the how-to.

I lot of the thread talks about twin set-up and focussing, which bit do I need to use to get tv only.

Thanks
Titus.

tseliot
April 17th, 2006, 08:44 AM
Hello all,
I have just read this thread from start to end, unfortunately I am now totally confused as to which part of the how-to applies to me.

I want to set-up my pc to my tv only, I do not need or want another monitor (though I can connect one if necessary to assist with the set-up).

I am based in Germany so my tv is PAL-B (I think).

I am connecting via a SVIDEO (or is that S-VIDEO) and at present I have the ubuntu desktop on the tv but with terrrible colour renditioning (bright, garish colours and barely readable text) and it is to big.

My xorg.conf is a normally generated one, i.e. I have not carried out any changes as per the how-to.

I lot of the thread talks about twin set-up and focussing, which bit do I need to use to get tv only.

Thanks
Titus.
I have never tried such a thing. However if your problem is the resolution and refresh rate you can try this guide:
http://ubuntuforums.org/showthread.php?t=83973&highlight=resolution

Titus A Duxass
April 17th, 2006, 09:38 AM
Okay, I managed to get it working.
I copy the xorg.conf posted by dninja on about page 8 of this thread.
Then I did some changes:
PAL-I to PAL-B
changed the mouse and keyboard entries in the server section to:
Generic Keyboard
Configured Mouse

Fired it all up again, found the mouse was locked.
Cured that by removing power, removing the BIOS battery and resetting the BOIS.

Now it all works apart from MythTV being slightly bigger than the TV screen, I think I'll have to go to Myth Talk for that one. I did try nvtv but it gives "segmentation fault".

cazz
April 29th, 2006, 04:04 PM
Hmm I follow that guide and restart and now I cant see GNOME because that is something wrong with the Server-X.

I have attach that config that work (xorg.conf.orginal) and that config that dont work (xorg.conf.change)

Maybe someone can tell me what I did wrong :???:

elsupermang
April 29th, 2006, 04:53 PM
For those of you with laptops here's how to set it up so X will activate any extra screens as a clone automatically.


Section "Device"
Identifier "NVIDIA Corporation NV41.8 [GeForce Go 6800]"
Driver "nvidia"
BusID "PCI:1:0:0"
Option "AllowGLXWithComposite" "true"
Option "RenderAccel" "true"
Option "CursorShadow" "1"
Option "NoLogo"
Option "TwinView" "true"
Option "TwinViewOrientation" "Clone"
Option "TVOutFormat" "SVIDEO"
Option "TVStandard" "NTSC-M"
Option "Metamodes" "dfp-0:1440x900,dfp-1:1024x768@1440x900;dfp-0:1440x900,tv:800x600@1440x900;dfp-0:1440x900,dfp-1:NULL"
EndSection

dfp-0 refers to your laptop screen, dfp-1 refers to any CRT or LCD connected via the 15 pin connector and tv refers to the S-VIDEO connection.

This way you can connect whatever you want and it will automatically setup everything without having to edit your xorg.conf. The last metamode is for running with only your laptop monitor activated when there is no connection present.

Also the 1024x768 @ 1440 x 900 makes it so you will output a resolution of 1024x768 with a panning area of 1440x900. Its for when the other monitor cant support that big a resolution but you want the whole screen to be panned. If your laptop monitor has a standard resolution of 1024x768 you dont need this.

cazz
April 29th, 2006, 05:13 PM
Thanks I change orginal so it look like

Section "Device"
Identifier "NVIDIA Corporation NV17 [GeForce4 420 Go 32M]"
Driver "nvidia"
Option "RenderAccel" "true"
Option "AllowGLXWithComposite" "true"
Option "IgnoreEDID" "true"
Option "IgnoreEdidFreqs" "true"
Option "GenerateRTList" "0"
Option "OverridePolarity" "1"
Option "TwinView" "true"
Option "TwinViewOrientation" "Clone"
Option "TVOutFormat" "SVIDEO"
Option "TVStandard" "PAL-B"
Option "Metamodes" "dfp-0:1440x900,dfp-1:1024x768@1440x900;dfp-0:1440x900,tv:800x600@1440x900;dfp-0:1440x900,dfp-1:NULL"
EndSection

I can see a picture on my TV but that is black and white to big (only part of login script show) that I think that is because the picture is to little.
But I have no picture on my laptop, is just black screen.

elsupermang
April 29th, 2006, 09:20 PM
You have to change the resolution, my laptop uses 1440X900 as its native resolution so you have to change it to match your laptop's native, unless it is 1440x900 as well.

For example if your laptops native is 1280x720 you would use

Option "Metamodes" "dfp-0:1280x720,dfp-1:1280x720;dfp-0:1280x720,tv:800x600@1280x720;dfp-0:1280x720,dfp-1:NULL"

the @ is used when the maximum resolution supported by the other monitor is smaller than the resolution your first monitor is outputting. if anyone knows how to scale this so you can have different resolutions fit perfectly, please do tell.

cazz
April 30th, 2006, 07:41 AM
Now I have picture on TV and my laptop but that is something strange.

1) I have a black and white picture on TV?

2) I change size of tv:XXXXXX but that is same size on the tv when I restart the X-server??

/EDIT

1) I change in the config file from SVIDEO to Composit (But I have a S-video contact) so now I have color (strong colour)

2) I have read about that a TV only can take 800x600 but that dont show whole desktop?

I have this now

"dfp-0:1280x800,dfp-1:1024x768@1280x800;dfp-0:1280x800,tv:800x600;dfp-0:1280x800,dfp-1:NULL"

kebabtomten
April 30th, 2006, 10:03 AM
I have follow the guide and i get an picutre on my TV but it is black(it is wihte when the Nvidia logo is showed) This is my xorg.conf# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 1.0 (buildmeister@builder3) Wed Dec 14 16:39:22 PST 2005

# /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
#"ExplorerPS/2"

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 "Files"

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

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

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "se"
EndSection

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

Section "Monitor"
Identifier "Monitor[0]" #CRT
Option "DPMS"
HorizSync 31.5-70
VertRefresh 50-120
EndSection

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

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" "SVIDEO" #or SVIDEO etc
Option "TVStandard" "PAL-B" #or NTSC etc
Option "ConnectedMonitor" "Monitor[1]"
BusID "PCI:1:0:0" #adjust using 'lspci' or cat /proc/pci
EndSection

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

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


What is wrong? I know i use an SVIDEO and i have try with PAL-B and PAL-G. I am from Sweden so sorry for my bad English.

elsupermang
April 30th, 2006, 12:22 PM
Cazz change tv:800x600 to tv:800x600@1280x800

It's not the best solution but its better than having to set your laptop screen to 800x600.

kebab try some other formats

PAL-B


Belgium, Denmark, Finland, Germany, Guinea, Hong Kong, India, Indonesia, Italy, Malaysia, The Netherlands, Norway, Portugal, Singapore, Spain, Sweden, and Switzerland

PAL-D


China and North Korea

PAL-G


Denmark, Finland, Germany, Italy, Malaysia, The Netherlands, Norway, Portugal, Spain, Sweden, and Switzerland

PAL-H


Belgium

PAL-I


Hong Kong, Ireland, and United Kingdom

PAL-K1


Guinea

PAL-M


Brazil

PAL-N


France, Paraguay, and Uruguay

PAL-NC


Argentina

NTSC-J


Japan

NTSC-M


Canada, Chile, Colombia, Costa Rica, Ecuador, Haiti, Honduras, Mexico, Panama, Puerto Rico, South Korea, Taiwan, United States of America, and Venezuela

HD480i


480 line interlaced

HD480p


480 line progressive

HD720p


720 line progressive

HD1080i


1080 line interlaced

HD1080p


1080 line progressive

HD576i


576 line interlace

HD576p


576 line progressive

Also make sure your TV actually supports 1024x768, i know some that can only do 800x600 or 640x480

cazz
April 30th, 2006, 12:39 PM
Thanks

I did try that but that is same result.
The picture on TV dont show whole desktop


Section "Device"
Identifier "NVIDIA Corporation NV17 [GeForce4 420 Go 32M]"
Driver "nvidia"
Option "RenderAccel" "true"
Option "AllowGLXWithComposite" "true"
Option "IgnoreEDID" "true"
Option "IgnoreEdidFreqs" "true"
Option "GenerateRTList" "0"
Option "OverridePolarity" "1"
Option "TwinView" "true"
Option "TwinViewOrientation" "Clone"
Option "TVOutFormat" "Composite" #SVIDEO
Option "TVStandard" "PAL-B"
Option "Metamodes" "dfp-0:1280x800,dfp-1:1024x768@1280x800;dfp-0:1280x800,tv:800x600@1280x800;dfp-0:1280x800,dfp-1:NULL"
EndSection


I going to try other then "clone"

No that was no good.

But someome told me to read Appendix P (Configuring Multiple X Screens on One Card)
Maybe that help.


/EDIT
The Appendix P is that exempel that start this thread and that I can't get to work, no picture in the TV.

cazz
April 30th, 2006, 04:22 PM
I have try a little but nothing show on TV

I have never give up before and I dont going to give up yet. [-(

I have attach my xorg.conf file
I see no error in the Xorg.0.log

kebabtomten
May 2nd, 2006, 12:59 PM
i change the resolutuion and now it works =) But there is one thing i dont like, i cant switch of the tv on an easy way. Is that possibel?

elsupermang
May 2nd, 2006, 08:33 PM
Well all you have to do is disconnect the cable heh. But if your on a laptop some have a hardware switch (like FN + F8) that will kill the signals.

kebabtomten
May 3rd, 2006, 09:43 AM
Well all you have to do is disconnect the cable heh. But if your on a laptop some have a hardware switch (like FN + F8) that will kill the signals.
I dont meen like that, i whant it to be like my xorg.conf_backup. Can i switch that on/off on any easy way?

gizm0
May 4th, 2006, 03:25 AM
I finally got my xorx.conf work with my DiBoss 32" (HDTV) LCD-TV. Now i have two kinds of problems: when i remove "ModeLine "720p" 73.825 1280 1320 1368 1640 720 722 724 751 +hsync +vsync" line from Monitor section, then LCD TV works great, BUT it has very big black borders around of the picture. The second problem is that, if i include "ModeLine "720p" 73.825 1280 1320 1368 1640 720 722 724 751 +hsync +vsync" line to monitor section, then the picture will overscan and i can't see the taskbars.

I have tried to set the resolution to 1080i, but it did the same thing :(. I also have tried to remove and add virtual screen size, but it didn't help either. This is the only problem that i have with tv-out: overscan or black borders around the picture (empty space).

Has anybody got advices for this? Here is my xorg.conf in the attachment.

Here is my computers etc. specs: AMD 64 2800+,epox paj,nvidia 6600,breezy badger,nvidia drivers and DiBoss 32" LCD-TV (HDTV LT-32Q5LFH). LCD-Tv is connected to PC with component cable.

eerstkoffie
May 4th, 2006, 09:09 PM
wow ! interesting and complete stuff here, but i could'nt find anything for my nvtv-problem.
maybe one of you can help me out.

after i installed nvtv, i could start my machine, and after login, pessing the F1 button starts my television.

but, the screen, the desktop that appears on my tv is huge. like zooming in and only seeing the centerpart of the desktop. it's way to big to resize it with the mouse.
changing resolution didn't help, and besides that, nvtv doesn't seem to remember any changes i made, after a restart.

i'm using a Asus 7100 card, believe it uses nvidia chipset.
nvidia drivers installed on my box.

hope someone has a tip...

Haegin
May 8th, 2006, 03:01 AM
Hi,
I followed the guide in post 1 and my TV still isn't working. Its worked before so I know it isnt the hardware. Here is my xorg.conf and a snippet from my Xorg.0.log.
Can you see anything wrong?

Patok
May 8th, 2006, 06:52 PM
Hey
Used your guide
Thing is, now my keyboard doesnt work and my mouse can move but not click
And the tvout doesnt wor k either, and my Gnome desktop was totally changed
Please what can i do
Thanx

edit:
I managed to restore the old xorg.conf file from the backup, but I would still really like to be able to have the tv-out, so what can I do?

Jonas_Henricsson
May 13th, 2006, 07:26 AM
I followed the instructions, but after I tried restarting the computer, X doesn't load. I get some kind of error message. Good thing I got the backup.

There is one difference between my xorg,conf and the one described in the instructions:
Section "Device"
Identifier "Device[0]"
Driver "nv"
BusID "PCI:1:0:0"
Screen 0
EndSection

So it says nv instead of nvidia under driver. Can this be the cause of my problem?

/Jonas

tseliot
May 14th, 2006, 04:22 AM
I followed the instructions, but after I tried restarting the computer, X doesn't load. I get some kind of error message. Good thing I got the backup.

There is one difference between my xorg,conf and the one described in the instructions:
Section "Device"
Identifier "Device[0]"
Driver "nv"
BusID "PCI:1:0:0"
Screen 0
EndSection

So it says nv instead of nvidia under driver. Can this be the cause of my problem?

/Jonas
Yes, of course that's the problem. It means that you haven't installed the nvidia proprietary driver. Please follow my guide about the installing the driver.

Jonas_Henricsson
May 14th, 2006, 06:09 AM
Yes, of course that's the problem. It means that you haven't installed the nvidia proprietary driver. Please follow my guide about the installing the driver.

Oh. Well, I just tried installing the drivers using Automatix and it caused an error I've been having problems with for quite some time. After I installed the drivers, I couldn't even get into X before the computer got hung up. But that's probably some kind of hardware error with my graphics card and I probably shouldn't fiddle too much with it... It's actually the reason why I left windows for Ubuntu :)

Thanks for the help!

/Jonas

tseliot
May 14th, 2006, 08:31 AM
Oh. Well, I just tried installing the drivers using Automatix and it caused an error I've been having problems with for quite some time. After I installed the drivers, I couldn't even get into X before the computer got hung up. But that's probably some kind of hardware error with my graphics card and I probably shouldn't fiddle too much with it... It's actually the reason why I left windows for Ubuntu :)

Thanks for the help!

/Jonas
Please read my guide:
http://www.ubuntuforums.org/showthread.php?t=75074

If you want the latest version of the driver you will also find a link to my scripts there (for an automatic installation).

danzat
May 21st, 2006, 12:46 PM
Well, I followed your guide, and the TV is blank.

I get this error in the console:
(EE) NVIDIA(1): No modes remaining for display device TV-0

tseliot
May 21st, 2006, 04:05 PM
Well, I followed your guide, and the TV is blank.

I get this error in the console:
(EE) NVIDIA(1): No modes remaining for display device TV-0
Perhaps your Tv doesn't support the resolution you set. Try a lower resolution in your xorg.conf (only for your tv)

Lotherian
May 22nd, 2006, 12:04 PM
Hi there!

Thanks for an excellt guide! It worked flawless! :-D

The only trouble I have is that the TV is in the other end of my room and my eyes are not eaglesharp! So can you point me to a (hopefully excellent) guide that instead of 2 diffrent work areas makes a clone of my desktop on the tv?

Keep up the good work!

/T

tseliot
May 22nd, 2006, 04:53 PM
Hi there!

Thanks for an excellt guide! It worked flawless! :-D

The only trouble I have is that the TV is in the other end of my room and my eyes are not eaglesharp! So can you point me to a (hopefully excellent) guide that instead of 2 diffrent work areas makes a clone of my desktop on the tv?

Keep up the good work!

/T
Use the search function and look for Nvidia Twinview (which is a method alternative to mine)

Jose Catre-Vandis
May 22nd, 2006, 07:24 PM
Oh, I have tried everything, having read all 17 pages, am nearly there but not quite.

I get flickering horizontal lines on my TV, you know, like a slightly out of tune TV station

TV is a Panasonic TX 36 PL30, and behaves the same if the refresh scan mode is set to progressive or 100mhz

Cable OK, as can see text on boot and when not in X

PC is a Shuttle SN41G2, which has 2 x VGA heads and an SVIDEO out (this might be causing a problem?)

log shows problems with EDID, but tried the option and this did funny screen things to my desktop. Apart from this the CRT has been rock solid in terms of display.

Attached are xorg.conf and xorg.0.log in 2 halves

9876

9877

9878

If it helps I also tried Twinview, this gave me a steady vertical picture, but skewed and in triplicate across the screen

tseliot
May 23rd, 2006, 03:14 AM
Oh, I have tried everything, having read all 17 pages, am nearly there but not quite.

I get flickering horizontal lines on my TV, you know, like a slightly out of tune TV station

TV is a Panasonic TX 36 PL30, and behaves the same if the refresh scan mode is set to progressive or 100mhz

Cable OK, as can see text on boot and when not in X

PC is a Shuttle SN41G2, which has 2 x VGA heads and an SVIDEO out (this might be causing a problem?)

log shows problems with EDID, but tried the option and this did funny screen things to my desktop. Apart from this the CRT has been rock solid in terms of display.

Attached are xorg.conf and xorg.0.log in 2 halves

9876

9877

9878

If it helps I also tried Twinview, this gave me a steady vertical picture, but skewed and in triplicate across the screen
Since you say that also Twinview doesn't work I'm lead to think that is a hardware incompatibility (which perhaps can be solved).

Therefore I suggest you to start a new thread on the Unofficial Nvidia Forums (the Nvidia staff will help you there):
http://www.nvnews.net/vbulletin/forumdisplay.php?s=&forumid=14

caish5
May 25th, 2006, 12:48 AM
I got my TV working first go with the guide, but i cannot get my mouse to go over there!! Very Frustrating..
Here is my xorg.conf
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/100dpi"
FontPath "/usr/share/X11/fonts/75dpi"
# path to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load "i2c"
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" "pc104"
Option "XkbLayout" "us"
EndSection

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

Section "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" "SVIDEO" #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


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

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

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

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

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

Section "DRI"
Mode 0666
EndSection

The only thing I think it could be is that i copied the vertrefresh and horizsync settings out of the guide because i could not find any for my monitor. But somehow i don't think that is the problem.
Ideas anyone????

tseliot
May 25th, 2006, 06:56 AM
I got my TV working first go with the guide, but i cannot get my mouse to go over there!! Very Frustrating..
Here is my xorg.conf
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/100dpi"
FontPath "/usr/share/X11/fonts/75dpi"
# path to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load "i2c"
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" "pc104"
Option "XkbLayout" "us"
EndSection

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

Section "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" "SVIDEO" #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


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

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

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

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

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

Section "DRI"
Mode 0666
EndSection

The only thing I think it could be is that i copied the vertrefresh and horizsync settings out of the guide because i could not find any for my monitor. But somehow i don't think that is the problem.
Ideas anyone????
Can you remove the space between "Screen" and "[0]" (do the same for the lines quoted below)
Section "Screen"
Identifier "Screen [0]"
Device "Device [0]"
Monitor "Monitor [0]"

Then restart the xserver (or even better, unplug the cable and reboot)

caish5
May 25th, 2006, 08:26 AM
Thanks a lot. I removed the spaces and all is good.
Allthough is there a way you can drag applications from one screen to another?

tseliot
May 25th, 2006, 09:44 AM
Thanks a lot. I removed the spaces and all is good.
Allthough is there a way you can drag applications from one screen to another?
I really wouldn't know. Perhaps with Twinview you can do that

technophreak
May 25th, 2006, 03:48 PM
I followed this guide exactly, but now when I boot Ubuntu, I get an error saying that X System couldnt start. How can I restore my default xorg.conf file so I can at least login?

Thanks

tseliot
May 25th, 2006, 06:36 PM
I followed this guide exactly, but now when I boot Ubuntu, I get an error saying that X System couldnt start. How can I restore my default xorg.conf file so I can at least login?

Thanks
Type:
sudo cp /etc/X11/xorg.conf.backup /etc/X11/xorg.conf

and then reboot by typing:
sudo reboot

amr2205
May 27th, 2006, 10:48 PM
Great post! :D
This is very useful for me, thanks a lot and keep the good work! =D>

psavva
May 28th, 2006, 06:16 AM
Hi,
I'm new to Ubuntu. I've been playing around with it for about a month now. Trying to get it working the way i want.

I've come accross a problem with my displays though.

I have an NVIDIA FX 5600 Graphics card (256 MB) with two Two Monitors capability.

I have followed the HOWTO: NVIDIA TV-OUT Guide and with no luck.

I've correctly installed the latest nvidia drivers (NVIDIA-Linux-x86-1.0-8762)

I can't seem to get my TV display working.

Here's a copy of my xorg.conf file.



# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 1.0 (buildmeister@builder3) Mon May 15 13:23:42 PDT 2006

-------------------------------------------------------------------------------------------

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

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

Section "Files"

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

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

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
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 "Monitor"
Identifier "Monitor[0]" #CRT
Option "DPMS"
HorizSync 31.5-80
VertRefresh 56.3-75
EndSection

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

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 "TwinView"
Option "TVOutFormat" "SVIDEO" #or Composite etc
Option "TVStandard" "PAL-I"
BusID "PCI:1:0:0" #adjust using 'lspci' or cat /proc/pci
EndSection

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

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


-----------------------------------------------------------------------------------------------

Any help will be greatly appreciated.

:smile: :smile:

Jose Catre-Vandis
May 28th, 2006, 05:56 PM
Since you say that also Twinview doesn't work I'm lead to think that is a hardware incompatibility (which perhaps can be solved).

Therefore I suggest you to start a new thread on the Unofficial Nvidia Forums (the Nvidia staff will help you there):
http://www.nvnews.net/vbulletin/forumdisplay.php?s=&forumid=14


Thought I would report back, on success, although it was with Twinview rather than your way! Found a config file used by someone on another distro, specifically for an SN41G2. Oddly, the way to do it was to remove all the configuration you might think would be needed. No need to indicate horiz and vert refresh rates, TV Standards or Output Format. Using an SVideo lead the picutre is crystal clear. Will try a similar config with your setup to see if that works too. I know this isn;t a Twinview place, but here is the xorg.conf I found that sorted my problem, hope it helps others:

Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "unix/:7100"
EndSection

Section "Module"
Load "dbe"
Load "extmod"
Load "glx"
Load "record"
Load "freetype"
Load "type1"
Load "dri"
EndSection

Section "ServerFlags"
Option "allowmouseopenfail"
EndSection

Section "InputDevice" Identifier "Keyboard0"
Driver "keyboard"
Option "XkbRules" "xfree86"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/psaux"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes"
EndSection

Section "InputDevice" Identifier "DevInputMice"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Dell P780"
HorizSync 30.0 - 85.0
VertRefresh 48.0 - 120.0
Option "dpms"
EndSection

Section "Device"

# Option "SecondMonitorHorizSync" "30.0-60.0"
# Option "SecondMonitorVertRefresh" "48.0-80.0"
Option "UseEdidFreqs" "true" #Probes for HorizSync and VertRefresh
Option "TwinView" "true" #Enables TwinView
Option "NoLogo" "true" #Turns off nvidia logo at x startup
Option "ConnectedMonitor" "CRT, CRT"
# Option "TwinviewOrientation" "clone" #Second monitor is clone of first
Option "TwinviewOrientation" "RightOf" #Second monitor is desktop right of first
Option "Metamodes" "1280x1024, 1024x768"
# Option "TVStandard" "NTSC-M"
# Option "TVOutFormat" "SVIDEO"
# Option "NvAGP" "2"
# Option "CursorShadow" "1"
# Option "CursorShadowAlpha" "64"
# Option "CursorShadowYOffset" "2"
# Option "CursorShadowXOffset" "2"
Identifier "Videocard0"
Driver "nvidia"
VendorName "Videocard vendor"
BoardName "NVIDIA GeForce 4 MX (generic)"
BusID "PCI:2:0:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024" "1280x960" "1152x864" "1024x768" "800x600"
"640x480"
EndSubSection
EndSection

Section "DRI"
Group 0
Mode 0666
EndSection

btw, this works perfectly whether I have both the vga and svideo outputs connected or either/or, and you can see everything from boot through to login etc

xlyz
May 28th, 2006, 07:41 PM
Remember not to boot (EVER) with the TV-OUT calbe plugged in.


why?

perchè?

tseliot
May 29th, 2006, 02:41 AM
why?

perchè?
Otherwise it might not work. (I didn't write the drivers so I can't give you a technical answer)

tseliot
May 29th, 2006, 02:42 AM
Thought I would report back, on success, although it was with Twinview rather than your way! Found a config file used by someone on another distro, specifically for an SN41G2. Oddly, the way to do it was to remove all the configuration you might think would be needed. No need to indicate horiz and vert refresh rates, TV Standards or Output Format. Using an SVideo lead the picutre is crystal clear. Will try a similar config with your setup to see if that works too. I know this isn;t a Twinview place, but here is the xorg.conf I found that sorted my problem, hope it helps others:



btw, this works perfectly whether I have both the vga and svideo outputs connected or either/or, and you can see everything from boot through to login etc
Thanks for reporting

xlyz
June 3rd, 2006, 06:58 AM
Otherwise it might not work. (I didn't write the drivers so I can't give you a technical answer)
mine works ;)

I feared it could damage the tv

deus777
June 4th, 2006, 04:23 PM
I am having problems getting TV-Out working. I am on a Dell Inspiron 8200 laptop, which has an Nvidia 4 Go 440 in it. I installed the NVidia drivers using EasyUbuntu and nvtv using Synaptic. I am running Breezy and am up-to-date. Here is my original xorg.conf: 10592

I tried to follow TSEliot's instructions and ended up with the following xorg.conf:10593

When I boot with this xorg.conf, I get a black screen on my laptop with a pointer. I can move the pointer to the right and onto another "screen" which appears on my laptop screen and the pointer changes to an X cursor. The TV acts as if it is getting no signal. The composite cable is plugged in and the TV is on the right input setting at the time Ubuntu boots.

I tried to follow elsupermang's instructions on a fresh copy of my xorg.conf and ended up with the following xorg.conf:10594

When I boot with this xorg.conf, I can log into Ubuntu, but I still don't get anything on the TV.

Can anyone help me get this working? Thanks in adavance for any help. :)

P.S. Please don't ask me to upgrade to Dapper because I tried with RC a few days before release and I couldn't even boot into X.

axm
June 4th, 2006, 06:34 PM
I am trying (for two days now) to figure out, how to get the tv-out running. I failed and I am desperate for some help. This post has gotten a bit long, sorry.



Needing: use of TV-out, does not matter how in the first place, Situation:

-ubuntu 5.10

-nvidia GeForce 3 Ti 200

-Mini DIN S-Video / Scart Connection to TV

-TV: Grundig MW 82-100 (16:9 but also 4:3 capable and "recognizes" a 4:3 "no-"signal;

has a VGA in (I cannot use that one due to no second vga out), that specifies

640x480@60Hz, 31.5hf, 60vf and understands as well some PALs as NTSCs.)

-running perfectly in this configuration under Win XP (switch view, not dual)



1) Firstly, I tried this howto. But after some doubts, if my graphics card can handle two screens at the same time (no TwinView support as for nvtv needed, I am still not sure if X11 can do that anyway, would be great), I tried this one:



2) http://www.iofcea.de/cgi-bin/seite.pl?file=linuxtvout



..which goes for switching between two Xservers. Did not help either.



3) Then I tried to get the TV running as a single monitor like someone implicitely suggested in the "tv-out for newbies"-thread. But that did not work again, so I am assuming it is the configuration for the TV that is wrong.



Outcome: A blink on the TV every startup, then nothing. I cannot move the mouse cursor to the next screen, but I do not know if that should happen without TwinView. So far the big picture, now the errors.

_____



1) I constantly get this one while trying to load two screens:



(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



Hence my thoughts about my graphics card not beeing able to do this, but I do really not know that. After all, I have seen this warning sometimes in error logs on the web, but it was not mentioned as a source of problems at all.


The real bugger should be:

(II) NVIDIA(1): Using ConnectedMonitor string "TV-0"
(EE) NVIDIA(1): The requested configuration of display devices is not
(EE) NVIDIA(1): supported in the hardware.



http://forum.michaxm.de/tv-out/xorg.conf.backup-dualscreen
http://forum.michaxm.de/tv-out/Xorg.0.log-dual

2) For the switching method: Starts up perfectly (no Errors, no Warnings apart from APM or some missing fonts(?)), but does not switch to TV (becoming black and returning):



>sudo X -screen screen1 :1 -ac & sleep 2; DISPLAY=:1 totem && kill `ps aux | awk '/X\ -screen/ {print $2}' `



(EE) NVIDIA(0): No modes remaining for display device CRT-0

(EE) NVIDIA(0): *** Aborting ***

(EE) Screen(s) found, but none have a usable configuration.
Fatal server error:

no screens found
[...Exit 1]
Gtk-WARNING **: cannot open display

Again, I think that could hint to the tv configuration.



http://forum.michaxm.de/tv-out/xorg.conf.backup-switching
http://forum.michaxm.de/tv-out/Xorg.0.log-switching

http://forum.michaxm.de/tv-out/Xorg.1.log-switching

3) This is where it went really frustating. I removed the crt in the server layout of 1), only the tv remaining:

Screen 0 "screen1"
#Screen 1 "screen1" RightOf "screen0"

I paranoidly also tried commenting the crt monitor/device/screen sections and
renamed the tv sections from 1 to 0, with the same result:


(WW) NVIDIA: No matching Device section for instance (BusID PCI:1:0:0) found
...
(EE) Screen 0 deleted because of no matching config section.
...

...resulting in a startup without X. So either there must be something wrong with the TV-config or it is not possible for linux to use a TV but no CRT, which I doubt. The TV is capable of at least 640x480 and should also be capable of standard freqencies.

http://forum.michaxm.de/tv-out/xorg.conf.backup-tvonly
http://forum.michaxm.de/tv-out/Xorg.0.log-tvonly

I also rebooted with the tv-out cable unplugged, but no change except that the TV was not automatically recognized anymore. I hope someone has an idea, would be staggering to boot Windows just for that. Thanks in advance.

PS: Would be at least good to know:
a) apart from my problem: if it is possible to dual screen without a TwinView capable card
b) if the analysis (tv-configuration is the problem) should be correct

tseliot
June 5th, 2006, 05:17 AM
I am trying (for two days now) to figure out, how to get the tv-out running. I failed and I am desperate for some help. This post has gotten a bit long, sorry.
1) Did you install the Nvidia driver?
2) If so, which version of the driver are you using?

I warn you that driver 8762 might cause you problems with TV-OUT (I use 8756)

axm
June 5th, 2006, 10:53 AM
1) Did you install the Nvidia driver?
2) If so, which version of the driver are you using?

I warn you that driver 8762 might cause you problems with TV-OUT (I use 8756)

Yes, of course I installed nvidia drivers, but I have to be slapped for not thinking about bad versions. apt get gave me 1.0.7667-0ubuntu25.1, after your post I tried 1.0.7174-0ubuntu25.1 (legacy drivers) which changed nothing and now I have the 8756 from nvidia installed. That makes no visible difference, but one in the logs:


(WW) NVIDIA(0): No size information available in CRT-0's EDID; cannot compute
(WW) NVIDIA(0): DPI from EDID.
(I assume that means nothing important since device 0 is fine)
...
(WW) NVIDIA(1): There are only 1 CRTCs available, trimming display device list
(WW) NVIDIA(1): from "TV-0" to "".
(II) NVIDIA(1): Assigned Display Device:
(WW) NVIDIA(1):
(WW) NVIDIA(1): No modes were requested; the default mode "nvidia-auto-select"
(WW) NVIDIA(1): will be used as the requested mode.
(WW) NVIDIA(1):
(WW) NVIDIA(1): No valid modes for "nvidia-auto-select"; removing.
(WW) NVIDIA(1):
(WW) NVIDIA(1): Unable to validate any modes; falling back to the default mode
(WW) NVIDIA(1): "nvidia-auto-select".
(WW) NVIDIA(1):
(WW) NVIDIA(1): No valid modes for "nvidia-auto-select"; removing.
(EE) NVIDIA(1): Unable to use default mode "nvidia-auto-select".

Again, I suspect the TV configuration, I did a little bit trial-and-error (achieving nothing) and at the moment I ended up with:

HorizSync 30 - 50
VertRefresh 40 - 60

and
SubSection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubSection

deus777
June 5th, 2006, 09:24 PM
1) Did you install the Nvidia driver?
2) If so, which version of the driver are you using?

I warn you that driver 8762 might cause you problems with TV-OUT (I use 8756)

I have the NVidia driver installed but I don't know which version it is. Is there a command I can run to find out what version I have installed?

tseliot
June 6th, 2006, 04:56 AM
I have the NVidia driver installed but I don't know which version it is. Is there a command I can run to find out what version I have installed?
dmesg | grep NVIDIA

tseliot
June 6th, 2006, 05:00 AM
Guys, I suggest you to ask for help on the Unofficial Nvidia Forums (Nvidia's staff will help you there):
http://www.nvnews.net/vbulletin/forumdisplay.php?f=14&page=2&order=desc

tseliot
June 7th, 2006, 08:04 AM
UPDATE: I have solved the problem with TV-OUT and driver 8762 (with my card, I'm not sure if it works for you).

Get to the Screen Section regarding your TV in your xorg.conf and set the refresh rate of your TV just like in the example below:

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

The word in red is the refresh rate.

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

walding
June 7th, 2006, 03:47 PM
Hi,

I've been trawling through to find an answer to my question...sorry if this is a repeat question...

I want to set up multiple clones from my laptop:

RGB-out for my projector
SVIDEO out for my TV

Or as a second option, to have the RGB as clone, and SVIDEO as a second screen (can that be done with ~ "LCD Screen Clone RGB leftof SVIDEO"?)

Can anyone help me do this, please? I can't find a thorough guide on how to add devices and specify where they are.

Thanks

AW

tseliot
June 7th, 2006, 04:19 PM
Hi,

I've been trawling through to find an answer to my question...sorry if this is a repeat question...

I want to set up multiple clones from my laptop:

RGB-out for my projector
SVIDEO out for my TV

Or as a second option, to have the RGB as clone, and SVIDEO as a second screen (can that be done with ~ "LCD Screen Clone RGB leftof SVIDEO"?)

Can anyone help me do this, please? I can't find a thorough guide on how to add devices and specify where they are.

Thanks

AW
You should look for the guide about Twinview

walding
June 7th, 2006, 04:32 PM
Yeah - that's how I ended up here! Never mind.

Riz
June 7th, 2006, 05:00 PM
hi guys ive been trying to get tv out workingfor several days and finally got it working except that i can only see the top left quarter of the screen. Can anyone tell me how to change the picture size on the tv out? ive got a GeForce 5700and connect to my tv via a SVIDEO and scart adapter. the strange thing is that the picture is perfect all the way through booting its only once the nvidia logo screen comes up that it doesnt fit on the tv anymore.
This is my Xorg.conf file

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 1.0 (buildmeister@builder3) Mon May 15 13:23:42 PDT 2006

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

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen" 0 0
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "Files"

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

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

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "ch"
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 "Monitor"
Identifier "BenQ FP731 "
Option "DPMS"
EndSection

Section "Monitor"
Identifier "TV"
Option "TVStandard" "PAL-I"
Option "SVIDEO"
EndSection

Section "Device"
Identifier "NVIDIA Corporation NV36 [GeForce FX 5700]"
Driver "nvidia"

# twinview
Option "TwinView"
Option "TwinViewOrientation" "Clone"
Option "SecondMonitorHorizSync" "30-50"
Option "SecondMonitorVertRefresh" "50"
Option "MetaModes" "1280x1024, 800x600"
Option "TVStandard" "PAL-I"
Option "ConnectedMonitor" "CRT, TV"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV36 [GeForce FX 5700]"
Monitor "BenQ FP731 "
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480" "640x350"
EndSubSection
EndSection

Thanks in advance for any help. :)

auburn
June 8th, 2006, 07:12 PM
Thanks tseliot! I got my geforce4 mx 4000 to work under dapper. I'm pleased. My first attempt failed (I didn't copy and paste) but then I tried rewriting the xorg.conf one step at a time. First I changed all the names and stayed with the one crt, and when that worked I added the tv.

NaughtyusMaximus
June 8th, 2006, 07:28 PM
I've been able to this to work as described on page 1 with my computer (dapper), but I want to do something else and can't figure it out on my own.

I've plugged two keyboards and two mice into my computer. So what I want is for screen[0] (CRT) to use mouse[0] and keyboard[0], and screen[1] (TV) to use mouse[1] and keyboard[1]

I know this must be possible, but I'm at a loss for how to do it.

tseliot
June 8th, 2006, 07:40 PM
hi guys ive been trying to get tv out workingfor several days and finally got it working except that i can only see the top left quarter of the screen. Can anyone tell me how to change the picture size on the tv out? ive got a GeForce 5700and connect to my tv via a SVIDEO and scart adapter. the strange thing is that the picture is perfect all the way through booting its only once the nvidia logo screen comes up that it doesnt fit on the tv anymore.
This is my Xorg.conf file

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV36 [GeForce FX 5700]"
Monitor "BenQ FP731 "
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480" "640x350"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024_60" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480" "640x350"
EndSubSection
EndSection

Set the refresh rate of your monitor in the part in red. For example if you want to use a 60Hz Refresh rate you have to write "_60" ("_75" for 75Hz and so on).

Then restart the xserver.

vic5
June 10th, 2006, 07:47 AM
I have Geforce mx 440. 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 "i2c"
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" "pl"
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 "NVIDIA Corporation NV17 [GeForce4 MX 440]"
Driver "nvidia"
BusID "PCI:1:0:0"
Option "NoLogo" "True"
Option "TwinView" "1"
Option "HorizSync" "CRT: 28-75, TV: 30-66"
Option "VertRefresh" "CRT: 43-160, TV: 60"
Option "SecondMonitorHorizSync" "30-66"
Option "SecondMonitorVertRefresh" "60"
Option "TwinViewOrientation" "Clone"
Option "MetaModes" "1024x768_75,1024x768"
Option "ConnectedMonitor" "CRT, TV"
Option "TVStandard" "PAL-B"
Option "RenderAccel" "true"
Option "AllowGLXWithComposite" "true"

EndSection

Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
HorizSync 28-75
VertRefresh 43-160
EndSection

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV17 [GeForce4 MX 440]"
Monitor "Generic Monitor"
DefaultDepth 24
Option "ExactModeTimingsDVI" "TRUE"
Option "ModeValidation" "DFP-0: NoEdidDFPMaxSizeCheck, NoVesaModes"
SubSection "Display"
Depth 1
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x450" "720x400" "640x480" "640x400"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x450" "720x400" "640x480" "640x400"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x450" "720x400" "640x480" "640x400"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x450" "720x400" "640x480" "640x400"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x450" "720x400" "640x480" "640x400"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1152x864" "1024x768_75" "832x624" "800x600" "720x450" "720x400" "640x480" "640x400"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection



I have only 1024x768 50 Hz in my monitor. When i hash "Twin View" and restart x ten everything is ok, but there is no tv-out. What is wrong?

tseliot
June 10th, 2006, 10:16 AM
I have Geforce mx 440. my xorg.conf:
I have only 1024x768 50 Hz in my monitor. When i hash "Twin View" and restart x ten everything is ok, but there is no tv-out. What is wrong?
Sorry but I don't use Twinview. You should ask for help on the thread about Twinview

Riz
June 10th, 2006, 11:56 AM
Set the refresh rate of your monitor in the part in red. For example if you want to use a 60Hz Refresh rate you have to write "_60" ("_75" for 75Hz and so on).

Then restart the xserver.


Tried several different refresh rates now, but it doesnt seem to make any difference whatsoever :-s . Anyone got any other ideas? Cheers

tseliot
June 11th, 2006, 04:37 AM
Tried several different refresh rates now, but it doesnt seem to make any difference whatsoever :-s . Anyone got any other ideas? Cheers
Sorry but I don't use Twinview. I didn't notice you were using Twinview.

vic5
June 11th, 2006, 07:45 AM
Sorry but I don't use Twinview. You should ask for help on the thread about Twinview

Ok. So now i have my x.org like this :


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

Section "Module"
Load "i2c"
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" "pl"
EndSection

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

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

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

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

Section "Device"
Identifier "Device[0]"
Driver "nvidia"
BusID "PCI:1:0:0"
screen 0
Option "RenderAccel" "true"
Option "AllowGLXWithComposite" "true"
EndSection
Section "Device"
Driver "nvidia"
Identifier "Device[1]"
Screen 1
Option "TVOutFormat" "S-VIDEO" #or SVIDEO etc
Option "TVStandard" "PAL-B" #or NTSC etc
Option "ConnectedMonitor" "Monitor[1]"
BusID "PCI:1:0:0" #adjust using 'lspci' or cat /proc/pci
#Option "RenderAccel" "true"
#Option "AllowGLXWithComposite" "true"
EndSection

Section "Monitor"
Identifier "Monitor[0]" #CRT
Option "DPMS"
HorizSync 28-75
VertRefresh 43-160

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

Section "Screen"
Identifier "Screen[0]"
Device "Device[0]"
Monitor "Monitor[0]"
DefaultDepth 24


SubSection "Display"
Depth 1
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024""1152x864" "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



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


Everything was fine. But i install XGL, and now on the TV i have only grey screen... What is wrong? (sorry for my English).Help!

tseliot
June 12th, 2006, 07:04 AM
Ok. So now i have my x.org like this :





Everything was fine. But i install XGL, and now on the TV i have only grey screen... What is wrong? (sorry for my English).Help!
Remove XGL

Mguel
June 14th, 2006, 10:44 PM
Thanks for the How-to!

It worked fine on Kubuntu dapper 6.06 using geforce2 mx 400

I'm using a servicemenu to run videos on tv with kaffeine, I post it in case someone find it useful:

[Desktop Action PlayOnTV]
Exec=kaffeine -f -display :0.1 %F
Icon=kaffeine-play
Name=Play on TV

[Desktop Entry]
Actions=PlayOnTV
Encoding=UTF-8
Icon=kaffeine-play
ServiceTypes=video/*
I also commented the positioning of the second screen (RightOf or Below) so the mouse doesn't go of my crt screen since I only use tv out for movies which I start with the servicemenu I posted, and because before doing this sometimes apps opened on my TV (while working on the CRT what was a bit disturbing) [edit: sometimes when pressing alt+F2 the run command prompt still appears on the TV]

I haven't been able to do 2 things:

1.- preventing the kicker from the tv display from starting (I can kill it manually once started)

2.- change focus from the TV to the CRT. Once I launch movies they have focus, but if I do something on the screen (click a window for instance) I can't get focus back to the TV so I can for example pause the movie. A workaround would be a way to make mouse "jump" from one screen to the other

Thanks,
Mguel

Upuntu
June 17th, 2006, 03:19 AM
Hi! I tested this HOW-TO, and I got a picture in TV, but it is black and white. I attached my Xorg.conf and Xorg.0.log here. I'm Living in Finland so I use PAL-B. My TV is LG Flatron and its 2-3 years old. My Graphic Card is NVIDIA PALIT GF 5200. TV-OUT connector is SVIDEO, but I have tested this with Composite cable too. If I try change Option "TVOutFormat" to RGB, its still Black and white like with SVIDEO. If I use COMPOSITE, there is no picture in TV at all.

tseliot
June 17th, 2006, 03:32 AM
Hi! I tested this HOW-TO, and I got a picture in TV, but it is black and white. I attached my Xorg.conf and Xorg.0.log here. I'm Living in Finland so I use PAL-B. My TV is LG Flatron and its 2-3 years old. My Graphic Card is NVIDIA PALIT GF 5200. TV-OUT connector is SVIDEO, but I have tested this with Composite cable too. If I try change Option "TVOutFormat" to RGB, its still Black and white like with SVIDEO. If I use COMPOSITE, there is no picture in TV at all.
Try with a different cable

Upuntu
June 17th, 2006, 04:00 AM
Try with a different cable
I've got only one this long cable, but I have tested both cables with DVD Player, and they worked perfektly. So that's not the problem.

tseliot
June 17th, 2006, 04:53 AM
I've got only one this long cable, but I have tested both cables with DVD Player, and they worked perfektly. So that's not the problem.
I quote these posts which might be of help (they refer to your TV):

Sorted the pc and main telly. As I said before it was there and colour but with really bad picture quality. It was originally in scart socket AV1, if I changed it to AV2 the picture quality was perfect but black and white again, but by accident I found that when chosing AV2 I could also chose AV2S which gave picture quality and colour. I've no idea what the S stands for and what the differences between AV1, AV2 and AV2S are but I now have a nice clear picture in colour.

I've found the hidden menu option to get it to use AV-S rather than plain old AV. I've now got perfect quality output running on my tv. I've just got to find a way to get the tv save the setting.

Upuntu
June 17th, 2006, 06:36 AM
I quote these posts which might be of help (they refer to your TV):
Thanks for you, but I just got one A/V channel and one Scart socket. So that didn't help me...

3togo
June 21st, 2006, 03:57 PM
Same to me....

if I set
Option "TVOutFormat" "COMPOSITE"
=> no TV out

if I disable this Option by putting a "#" like this
#Option "TVOutFormat" "COMPOSITE"

I got a twinviews with greyed TV-out (no color).

brandt
June 22nd, 2006, 03:36 AM
Hi,
I'm just trying to get the X11 to do TV-out (no regular monitor) and I can't seem to get it to even do that. From everything I've read, my configuration should work, but doesn't. The only thing I can think of is that the card is a GeForce2 (roughly 5 years old) so maybe the nvidia drives don't play nicely with it. TV-out works fine under windows, but I'd much rather run Linux. Can someone take a look at my xorg.conf/log and see if I've overlooked something? Thanks.

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

Section "Module"
Load "i2c"
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" "pc104"
Option "XkbLayout" "us"
EndSection

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

Section "Device"
Identifier "NVIDIA Corporation NV15 [GeForce2 GTS/Pro]"
Driver "nvidia"
Option "RenderAccel" "true"
Option "ConnectedMonitor" "TV"
Option "TVOutFormat" "SVIDEO" #"COMPOSITE" or "SVIDEO"
Option "TVStandard" "NTSC-M"
#Option "TVOverScan" "0.6"
BusID "PCI:1:0:0"
EndSection

Section "Monitor"
Identifier "TV"
HorizSync 30-50
VertRefresh 60
EndSection

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV15 [GeForce2 GTS/Pro]"
Monitor "TV"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
#ViewPort 0 0
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection



Xorg.0.log


X Window System Version 7.0.0
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 7.0
Build Operating System:Linux 2.6.12 i686
Current Operating System: Linux bill 2.6.16-ck12 #1 Wed Jun 21 03:00:10 MDT 2006 i686
Build Date: 16 March 2006
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Thu Jun 22 01:24:30 2006
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) | |-->Monitor "TV"
(**) | |-->Device "NVIDIA Corporation NV15 [GeForce2 GTS/Pro]"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(WW) The directory "/usr/share/X11/fonts/cyrillic" does not exist.
Entry deleted from font path.
(**) 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 "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.8
X.Org XInput driver : 0.5
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 7.0.0, 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/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,0691 card 0000,0000 rev c4 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,8598 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:07:0: chip 1106,0686 card 1106,0000 rev 40 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 1106,0571 card 0000,0000 rev 06 class 01,01,8a hdr 00
(II) PCI: 00:07:2: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:07:3: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:07:4: chip 1106,3057 card 1106,3057 rev 40 class 06,00,00 hdr 00
(II) PCI: 00:07:5: chip 1106,3058 card 1106,3058 rev 50 class 04,01,00 hdr 00
(II) PCI: 00:09:0: chip 109e,036e card 0000,0000 rev 11 class 04,00,00 hdr 80
(II) PCI: 00:09:1: chip 109e,0878 card 0000,0000 rev 11 class 04,80,00 hdr 80
(II) PCI: 00:0b:0: chip 100b,0020 card 1385,f311 rev 00 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0150 card 1462,8831 rev a4 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: 0x000c (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:7:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI: (0:9:0) Brooktree Corporation Bt878 Video Capture rev 17, Mem @ 0xdf002000/12
(--) PCI:*(1:0:0) nVidia Corporation NV15 [GeForce2 GTS/Pro] rev 164, 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 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xd8000000 from 0xdbffffff to 0xd7ffffff
(II) Active PCI resource ranges:
[0] -1 0 0xdf001000 - 0xdf001fff (0x1000) MX[B]
[1] -1 0 0xdf000000 - 0xdf000fff (0x1000) MX[B]
[2] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[3] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[4] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[5] -1 0 0xdf002000 - 0xdf002fff (0x1000) MX[B](B)
[6] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[7] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[B]
[8] -1 0 0x0000e000 - 0x0000e003 (0x4) IX[B]
[9] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
[10] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[11] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
[12] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xdf001000 - 0xdf001fff (0x1000) MX[B]
[1] -1 0 0xdf000000 - 0xdf000fff (0x1000) MX[B]
[2] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[3] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[4] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[5] -1 0 0xdf002000 - 0xdf002fff (0x1000) MX[B](B)
[6] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[7] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[B]
[8] -1 0 0x0000e000 - 0x0000e003 (0x4) IX[B]
[9] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
[10] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[11] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
[12] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0xdf001000 - 0xdf001fff (0x1000) MX[B]
[5] -1 0 0xdf000000 - 0xdf000fff (0x1000) MX[B]
[6] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[7] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[8] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[9] -1 0 0xdf002000 - 0xdf002fff (0x1000) MX[B](B)
[10] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[11] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[12] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[13] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[B]
[14] -1 0 0x0000e000 - 0x0000e003 (0x4) IX[B]
[15] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
[16] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[17] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
[18] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
(II) LoadModule: "i2c"
(II) Loading /usr/lib/xorg/modules/libi2c.so
(II) Module i2c: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.2.0
ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "bitmap"
(II) Reloading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Loading font Bitmap
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions/libdri.so
(II) Module dri: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/lib/xorg/modules/linux/libdrm.so
(II) Module drm: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 7.0.0, 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/lib/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
compiled for 7.0.0, 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/lib/xorg/modules/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.8762
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules/libint10.so
(II) Module int10: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "type1"
(II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
compiled for 7.0.0, 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) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules/libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.1.0
ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "nvidia"
(II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.o
(II) Module nvidia: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.8762
Module class: X.Org Video Driver
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.1
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.5
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
compiled for 6.99.99.904, module version = 1.0.3
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.5
(II) NVIDIA X Driver 1.0-8762 Mon May 15 13:09:21 PDT 2006
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 01:00:0
(--) Chipset NVIDIA GPU found
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
compiled for 7.0.0, 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/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.8
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0xdf001000 - 0xdf001fff (0x1000) MX[B]
[5] -1 0 0xdf000000 - 0xdf000fff (0x1000) MX[B]
[6] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[7] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[8] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[9] -1 0 0xdf002000 - 0xdf002fff (0x1000) MX[B](B)
[10] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[11] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[12] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[13] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[B]
[14] -1 0 0x0000e000 - 0x0000e003 (0x4) IX[B]
[15] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
[16] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[17] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
[18] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
(II) resource ranges after probing:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0xdf001000 - 0xdf001fff (0x1000) MX[B]
[5] -1 0 0xdf000000 - 0xdf000fff (0x1000) MX[B]
[6] -1 0 0xd8000000 - 0xd7ffffff (0x0) MX[B]O
[7] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[8] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
[9] -1 0 0xdf002000 - 0xdf002fff (0x1000) MX[B](B)
[10] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[11] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[12] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[14] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[15] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[16] -1 0 0x0000e400 - 0x0000e403 (0x4) IX[B]
[17] -1 0 0x0000e000 - 0x0000e003 (0x4) IX[B]
[18] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
[19] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[20] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
[21] -1 0 0x0000d000 - 0x0000d00f (0x10) IX[B]
[22] 0 0 0xdd0003b0 - 0xdd0003bb (0xc) IS[B]
[23] 0 0 0xdd0003c0 - 0xdd0003df (0x20) IS[B]
(II) Setting vga for screen 0.
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(0): Option "ConnectedMonitor" "TV"
(**) NVIDIA(0): Option "TVStandard" "NTSC-M"
(**) NVIDIA(0): Option "TVOutFormat" "SVIDEO"
(**) NVIDIA(0): Option "RenderAccel" "true"
(**) NVIDIA(0): Enabling RENDER acceleration
(**) NVIDIA(0): Forcing SVIDEO output
(**) NVIDIA(0): TV Standard string: "NTSC-M"
(**) NVIDIA(0): ConnectedMonitor string: "TV"
(EE) NVIDIA(0): Failed to load the NVIDIA kernel module!
(EE) NVIDIA(0): *** Aborting ***
(II) UnloadModule: "nvidia"
(II) UnloadModule: "ramdac"
(II) UnloadModule: "fb"
(EE) Screen(s) found, but none have a usable configuration.

Fatal server error:
no screens found

tseliot
June 22nd, 2006, 03:53 AM
Hi,
I'm just trying to get the X11 to do TV-out (no regular monitor) and I can't seem to get it to even do that. From everything I've read, my configuration should work, but doesn't. The only thing I can think of is that the card is a GeForce2 (roughly 5 years old) so maybe the nvidia drives don't play nicely with it. TV-out works fine under windows, but I'd much rather run Linux. Can someone take a look at my xorg.conf/log and see if I've overlooked something? Thanks.
Why don't you read my guide?

dhega
June 24th, 2006, 12:25 PM
Hello, i have tried your guide all day now but i do not get any picture on my tv :(

I will post my xorg config and maybe someone can see what i have done wrong

I have a PCI-E 6800GS card btw.!

Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0"
Screen 1 "Screen1" RightOf "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection

Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
EndSection

Section "Module"
Load "dbe"
Load "extmod"
Load "type1"
Load "freetype"
Load "glx"
EndSection

Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xfree86"
Option "XkbModel" "pc105"
Option "XkbLayout" "se"
EndSection

Section "Monitor"
Identifier "Monitor0" #CRT
VendorName "Unknown"
ModelName "Unknown"
HorizSync 30.0 - 110.0
VertRefresh 50.0 - 150.0
Option "DPMS"
EndSection

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

Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Screen 0
EndSection

Section "Device"
Driver "nvidia"
Identifier "Device1"
Screen 1
Option "TVOutFormat" "SVIDEO" #or S-VIDEO etc
Option "TVStandard" "PAL-B" #or NTSC etc
Option "ConnectedMonitor" "Monitor1"
# BusID "PCI:5:0:0" #adjust using 'lspci' or cat /proc/pci
EndSection

Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "Screen"
Device "Device1"
Identifier "Screen1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768_50"
EndSubSection
EndSection





My log file:


X Window System Version 7.0.0
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 7.0
Build Operating System:Linux 2.6.15-ubuntu1 x86_64
Current Operating System: Linux dhega-desktop 2.6.15-23-amd64-generic #1 SMP PREEMPT Tue May 23 13:45:47 UTC 2006 x86_64
Build Date: 16 March 2006
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Jun 24 18:15:17 2006
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Layout0"
(**) |-->Screen "Screen0" (0)
(**) | |-->Monitor "Monitor0"
(**) | |-->Device "Device0"
(**) |-->Screen "Screen1" (1)
(**) | |-->Monitor "Monitor1"
(**) | |-->Device "Device1"
(**) |-->Input Device "Keyboard0"
(**) |-->Input Device "Mouse0"
(WW) The directory "/usr/share/X11/fonts/TTF/" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/OTF" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/CID/" does not exist.
Entry deleted from font path.
(==) FontPath set to "/usr/share/X11/fonts/misc/,/usr/share/X11/fonts/Type1/,/usr/share/X11/fonts/100dpi/,/usr/share/X11/fonts/75dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
Couldn't open RGB_DB '/usr/X11R6/lib/X11/rgb'
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.8
X.Org XInput driver : 0.5
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 7.0.0, 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/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(++) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,005e card 1695,1010 rev a3 class 05,80,00 hdr 00
(II) PCI: 00:01:0: chip 10de,0050 card 1695,1010 rev a3 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,0052 card 1695,1010 rev a2 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,005a card 1695,1010 rev a2 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,005b card 1695,1010 rev a3 class 0c,03,20 hdr 80
(II) PCI: 00:04:0: chip 10de,0059 card 1695,1010 rev a2 class 04,01,00 hdr 00
(II) PCI: 00:06:0: chip 10de,0053 card 1695,1010 rev a2 class 01,01,8a hdr 00
(II) PCI: 00:09:0: chip 10de,005c card 0000,0000 rev a2 class 06,04,01 hdr 01
(II) PCI: 00:0a:0: chip 10de,0057 card 1695,1010 rev a3 class 06,80,00 hdr 00
(II) PCI: 00:0b:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0c:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0d:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0e:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 01:06:0: chip 173b,03ea card 1385,302a rev 15 class 02,00,00 hdr 00
(II) PCI: 05:00:0: chip 10de,00c0 card 1682,2178 rev a2 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:9:0), (0,1,1), BCTRL: 0x0204 (VGA_EN is cleared)
(II) Bus 1 I/O range:
[0] -1 0 0x0000c000 - 0x0000c0ff (0x100) IX[B]
[1] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B]
[2] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[3] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xfde00000 - 0xfdefffff (0x100000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xfdf00000 - 0xfdffffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:11:0), (0,2,2), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1 0 0x0000b000 - 0x0000b0ff (0x100) IX[B]
[1] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
[2] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
[3] -1 0 0x0000bc00 - 0x0000bcff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
[0] -1 0 0xfdd00000 - 0xfddfffff (0x100000) MX[B]
(II) Bus 2 prefetchable memory range:
[0] -1 0 0xfdc00000 - 0xfdcfffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:12:0), (0,3,3), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 3 I/O range:
[0] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[B]
[1] -1 0 0x0000a400 - 0x0000a4ff (0x100) IX[B]
[2] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[B]
[3] -1 0 0x0000ac00 - 0x0000acff (0x100) IX[B]
(II) Bus 3 non-prefetchable memory range:
[0] -1 0 0xfdb00000 - 0xfdbfffff (0x100000) MX[B]
(II) Bus 3 prefetchable memory range:
[0] -1 0 0xfda00000 - 0xfdafffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 4: bridge is at (0:13:0), (0,4,4), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 4 I/O range:
[0] -1 0 0x00009000 - 0x000090ff (0x100) IX[B]
[1] -1 0 0x00009400 - 0x000094ff (0x100) IX[B]
[2] -1 0 0x00009800 - 0x000098ff (0x100) IX[B]
[3] -1 0 0x00009c00 - 0x00009cff (0x100) IX[B]
(II) Bus 4 non-prefetchable memory range:
[0] -1 0 0xfd900000 - 0xfd9fffff (0x100000) MX[B]
(II) Bus 4 prefetchable memory range:
[0] -1 0 0xfd800000 - 0xfd8fffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 5: bridge is at (0:14:0), (0,5,5), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 5 I/O range:
[0] -1 0 0x00008000 - 0x000080ff (0x100) IX[B]
[1] -1 0 0x00008400 - 0x000084ff (0x100) IX[B]
[2] -1 0 0x00008800 - 0x000088ff (0x100) IX[B]
[3] -1 0 0x00008c00 - 0x00008cff (0x100) IX[B]
(II) Bus 5 non-prefetchable memory range:
[0] -1 0 0xfa000000 - 0xfcffffff (0x3000000) MX[B]
(II) Bus 5 prefetchable memory range:
[0] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B]
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:24:0), (0,0,5), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(--) PCI:*(5:0:0) nVidia Corporation NV41.0 rev 162, Mem @ 0xfa000000/24, 0xd0000000/28, 0xfb000000/24
(II) Addressable bus resource ranges are
[0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
[1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
[0] -1 0 0xfdef0000 - 0xfdefffff (0x10000) MX[B]
[1] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
[2] -1 0 0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
[3] -1 0 0xfe02e000 - 0xfe02e0ff (0x100) MX[B]
[4] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
[5] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[6] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
[7] -1 0 0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
[8] -1 0 0x0000dc00 - 0x0000dc07 (0x8) IX[B]
[9] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[B]
[10] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[11] -1 0 0x0000f000 - 0x0000f0ff (0x100) IX[B]
[12] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[13] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[14] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[B]
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xfdef0000 - 0xfdefffff (0x10000) MX[B]
[1] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
[2] -1 0 0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
[3] -1 0 0xfe02e000 - 0xfe02e0ff (0x100) MX[B]
[4] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
[5] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[6] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
[7] -1 0 0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
[8] -1 0 0x0000dc00 - 0x0000dc07 (0x8) IX[B]
[9] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[B]
[10] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[11] -1 0 0x0000f000 - 0x0000f0ff (0x100) IX[B]
[12] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[13] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[14] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0xfdef0000 - 0xfdefffff (0x10000) MX[B]
[5] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
[6] -1 0 0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
[7] -1 0 0xfe02e000 - 0xfe02e0ff (0x100) MX[B]
[8] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
[9] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[10] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
[11] -1 0 0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
[12] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[13] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[14] -1 0 0x0000dc00 - 0x0000dc07 (0x8) IX[B]
[15] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[B]
[16] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[17] -1 0 0x0000f000 - 0x0000f0ff (0x100) IX[B]
[18] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[19] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[20] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[B]
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
compiled for 7.0.0, 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: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 7.0.0, 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: "type1"
(II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
compiled for 7.0.0, 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) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
compiled for 7.0.0, 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/lib/xorg/modules/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.8762
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "nvidia"
(II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.o
(II) Module nvidia: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.8762
Module class: X.Org Video Driver
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.1
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.5
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
compiled for 6.99.99.904, module version = 1.0.3
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.5
(II) NVIDIA X Driver 1.0-8762 Mon May 15 14:01:11 PDT 2006
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 05:00:0
(--) Assigning device section with no busID to primary device
(--) Assigning device section with no busID to primary device
(WW) NVIDIA: More than one matching Device section found: Device1
(--) Chipset NVIDIA GPU found
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
compiled for 7.0.0, 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/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.8
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0xfdef0000 - 0xfdefffff (0x10000) MX[B]
[5] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
[6] -1 0 0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
[7] -1 0 0xfe02e000 - 0xfe02e0ff (0x100) MX[B]
[8] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
[9] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[10] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
[11] -1 0 0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
[12] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[13] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[14] -1 0 0x0000dc00 - 0x0000dc07 (0x8) IX[B]
[15] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[B]
[16] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[17] -1 0 0x0000f000 - 0x0000f0ff (0x100) IX[B]
[18] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[19] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[20] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[B]
(II) resource ranges after probing:
[0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1 0 0xfdef0000 - 0xfdefffff (0x10000) MX[B]
[5] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
[6] -1 0 0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
[7] -1 0 0xfe02e000 - 0xfe02e0ff (0x100) MX[B]
[8] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
[9] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[10] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
[11] -1 0 0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
[12] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[13] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[14] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[16] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[17] -1 0 0x0000dc00 - 0x0000dc07 (0x8) IX[B]
[18] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[B]
[19] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[20] -1 0 0x0000f000 - 0x0000f0ff (0x100) IX[B]
[21] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[B]
[22] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[B]
[23] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[B]
[24] 0 0 0xfc0003b0 - 0xfc0003bb (0xc) IS[B]
[25] 0 0 0xfc0003c0 - 0xfc0003df (0x20) IS[B]
(II) Setting vga for screen 0.
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(0): Enabling RENDER acceleration
(II) NVIDIA(0): NVIDIA GPU GeForce 6800 GS at PCI:5:0:0
(--) NVIDIA(0): VideoRAM: 262144 kBytes
(--) NVIDIA(0): VideoBIOS: 05.41.02.49.05
(II) NVIDIA(0): Detected PCI Express Link width: 16X
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(--) NVIDIA(0): Connected display device(s) on GeForce 6800 GS at PCI:5:0:0:
(--) NVIDIA(0): Samsung SyncMaster (CRT-0)
(--) NVIDIA(0): NVIDIA TV Encoder (TV-0)
(--) NVIDIA(0): Samsung SyncMaster (CRT-0): 400.0 MHz maximum pixel clock
(--) NVIDIA(0): NVIDIA TV Encoder (TV-0): 400.0 MHz maximum pixel clock
(--) NVIDIA(0): TV encoder: NVIDIA
(II) NVIDIA(0): Assigned Display Device: CRT-0
(II) NVIDIA(0): Validated modes:
(II) NVIDIA(0): "1280x1024"
(II) NVIDIA(0): "1024x768"
(II) NVIDIA(0): "800x600"
(II) NVIDIA(0): "640x480"
(II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
(--) NVIDIA(0): DPI set to (85, 86); computed from "UseEdidDpi" X config option
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
[0] 0 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B]
[1] 0 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B]
[2] 0 0 0xfa000000 - 0xfaffffff (0x1000000) MX[B]
[3] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[7] -1 0 0xfdef0000 - 0xfdefffff (0x10000) MX[B]
[8] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
[9] -1 0 0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
[10] -1 0 0xfe02e000 - 0xfe02e0ff (0x100) MX[B]
[11] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
[12] -1 0 0xfb000000 - 0xfbffffff (0x1000000) MX[B](B)
[13] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
[14] -1 0 0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
[15] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](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 0x0000dc00 - 0x0000dc07 (0x8) IX[B]
[21] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[B]
[22] -1 0 0x0000ec00 - 0x0000