You are not logged in.

#1 2005-04-03 07:48:50

CrayMk7
Member
From: Norway
Registered: 2004-03-29
Posts: 51

Configuring multiple X screens (solved)

Until yesterday I've been running both my monitor and tv as two separate X screens with no problems, after a system cleanup I managed to delete the backup of my systemfiles AND destroy my /etc/X11/xorg.conf (alcohol can be bad).

It's probably one year since I configured the multiple X screens part in my xorg.conf, so I dont remeber anything.

So I followed : APPENDIX R: CONFIGURING MULTIPLE X SCREENS ON ONE CARD
here               : ftp://download.nvidia.com/XFree86/Linux … 336/README

And did some search here in the forum and acouple of others + google, every setup Iv'e seen so far is almost identical to the nvidia one and all of them is giving me a fatal error : Requested Entity Is Already In Use.

This is my current xorg.conf file witch give me the error, can anyone see something wrong in there?

Section "ServerLayout"
    Identifier     "Tv&Monitor"
    Screen 0       "Monitor" 0 0 
        Screen 1       "TV" leftOf "Monitor"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    RgbPath        "/usr/X11R6/lib/X11/rgb"
    ModulePath     "/usr/X11R6/lib/modules"
    FontPath       "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath       "/usr/X11R6/lib/X11/fonts/TTF/"
    FontPath       "/usr/X11R6/lib/X11/fonts/Type1/"
    FontPath       "/usr/X11R6/lib/X11/fonts/CID/"
    FontPath       "/usr/X11R6/lib/X11/fonts/75dpi/"
    FontPath       "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

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

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

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "mouse"
    Option           "Protocol"     "IMPS/2"
    Option           "Device"       "/dev/psaux"
        Option         "Buttons"      "3"
        Option         "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
    Identifier     "MonitorTarga"
        VertRefresh    31.5 - 96.0
        HorizSync      50.0 - 150.0
EndSection

Section "Monitor"
        Identifier    "TVThomson"
        VertRefresh   30.0 - 50.0
        HorizSync     60.0 - 60.0
EndSection      

Section "Device"
    Identifier     "GF4Ti4200"
    Driver         "nvidia"
        Option         "Nologo"    "true
        Screen         0
    BusID          "PCI:3:0:0"
EndSection

Section "Device"
        Identifier    "GF4Ti4200TVOut"
        Driver        "nvidia"
        Option        "Nologo"      "true"
        Screen        1
        BusID         "PCI:3:0:0"
EndSection

Section "Screen"
    Identifier     "Monitor"
    Device         "GF4Ti4200"
    Monitor        "MonitorTarga"
        DefaultDepth   24
    SubSection "Display
        Depth        16
                Modes        "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Viewport     0 0
        Depth        24
                Modes        "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "Screen"
       Identifier     "TV"
       Device         "GF4Ti4200TVOut"         
       Monitor        "TVThomson"
       DefaultDepth   24
       SubSection "Display"
               Depth        24
               Modes        "1024x768"
       EndSubSection
EndSection                

Thanks

Offline

#2 2005-04-03 14:33:43

jsn
Member
From: Finland
Registered: 2005-03-29
Posts: 19
Website

Re: Configuring multiple X screens (solved)

CrayMk7 wrote:

Section "Monitor"
        Identifier    "TVThomson"
        VertRefresh   30.0 - 50.0
        HorizSync     60.0 - 60.0
EndSection

Here's mine, not sure if this one would do the trick, but you seem to be missing atleast
those two options that i have. check what is the "PAL-B" for your region. it should be
on that nvidia readme file.

Section "Monitor"
    Identifier   "Monitor1"
    VendorName   "Thompson 28W"
    ModelName    "TV"
    HorizSync    30.5 - 50.0
    VertRefresh  50.0 - 60.0
    Option        "ConnectedMonitor" "TV"
    Option        "TVStandard" "PAL-B"
EndSection

Offline

#3 2005-04-03 15:06:10

CrayMk7
Member
From: Norway
Registered: 2004-03-29
Posts: 51

Re: Configuring multiple X screens (solved)

Hey jsn, thanks for the reply.

I addet what you said Option "ConnectedMonitor" "TV"
Option "TVStandard" "PAL-B" 

and Option "ConnectedMonitor" "CRT" to to my monitor part
It didnt fix it, but I would probably ned the  PAL-B option anyway when I get i t working.

When I uncomment all TV related stuff my xorg.conf is working just fine, and looking at the log file, it fails when activating the TVout part, complainig its already in use.

So X reads my xorg.conf file and assume I try to activate the card twice.

Offline

#4 2005-04-03 16:58:09

jsn
Member
From: Finland
Registered: 2005-03-29
Posts: 19
Website

Re: Configuring multiple X screens (solved)

CrayMk7 wrote:

So X reads my xorg.conf file and assume I try to activate the card twice.

Here's my full xorg.conf its big&ugly and may have some weird things in it
(havent yet fully cleaned it) but the seperate X screens work other to monitor
and other to TV:

Section "ServerLayout"

   Identifier  "Simple Layout"
    Screen 0  "Screen0" 0 0
    Screen 1  "Screen1" Below "Screen0"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection


Section "Module"

# This loads the DBE extension module.

    Load        "dbe"      # Double buffer extension

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

# This loads the font modules
    Load        "type1"
#    Load        "speedo"
    Load        "freetype"
#    Load        "xtt"

# This loads the GLX module
    Load       "glx"
# This loads the DRI module
#    Load       "dri"

EndSection

# **********************************************************************
# Files section.  This allows default font and rgb paths to be set
# **********************************************************************

Section "Files"

# The location of the RGB database.  Note, this is the name of the
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.

    RgbPath    "/usr/X11R6/lib/X11/rgb"

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
#
#

    FontPath   "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath   "/usr/X11R6/lib/X11/fonts/TTF/"
    FontPath   "/usr/X11R6/lib/X11/fonts/Type1/"
    FontPath   "/usr/X11R6/lib/X11/fonts/CID/"
    FontPath   "/usr/X11R6/lib/X11/fonts/75dpi/"
    FontPath   "/usr/X11R6/lib/X11/fonts/100dpi/"
    FontPath   "/usr/X11R6/lib/X11/fonts/local/"
#    FontPath   "/usr/X11R6/lib/X11/fonts/Speedo/"
#    FontPath   "/usr/X11R6/lib/X11/fonts/TrueType/"
#    FontPath   "/usr/X11R6/lib/X11/fonts/freefont/"

# The module search path.  The default path is shown here.

#    ModulePath "/usr/X11R6/lib/modules"

EndSection

# **********************************************************************
# Input devices
# **********************************************************************

# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************

Section "InputDevice"

    Identifier    "Keyboard1"
    Driver    "kbd"

    Option "AutoRepeat" "500 30"

#    Option "XkbModel"    "pc105"

    Option "XkbRules"    "xorg"
    Option "XkbModel"    "pc105"
    Option "XkbLayout"    "fi"

EndSection


# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

    Identifier    "Mouse1"
    Driver    "mouse"
    Option "Protocol"    "Auto"
    Option "Device"      "/dev/input/mice"
    Option "ZAxisMapping" "4 5"

EndSection


# **********************************************************************
# Monitor section
# **********************************************************************

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor 1600x1200"
    HorizSync    31.0 - 95.0
    VertRefresh  50.0 - 90.0
    Option        "dpms"
EndSection

Section "Monitor"
    Identifier   "Monitor1"
    VendorName   "Thompson 28W"
    ModelName    "TV"
    HorizSync    30.5 - 50.0
    VertRefresh  50.0 - 60.0
    Option        "ConnectedMonitor" "TV"
    Option        "TVStandard" "PAL-B"
EndSection


# **********************************************************************
# Graphics device section
# **********************************************************************

Section "Device"

    Identifier  "nvidia0"
    Driver      "nvidia"
    VendorName  "Videocard vendor"
    BoardName   "NVIDIA GeForce 4 (generic)"
#    Option        "RenderAccel" "true"
    BusID       "AGP:1:0:0"
    Screen    0
EndSection

Section "Device"
    Identifier  "nvidia1"
    Driver      "nvidia"
    VendorName  "Videocard vendor"
    BoardName   "NVIDIA GeForce 4 (generic)"
    BusID       "AGP:1:0:0"
    Screen      1
EndSection

# **********************************************************************
# Screen sections
# **********************************************************************

# Any number of screen sections may be present.  Each describes
# the configuration of a single screen.  A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.

Section "Screen"
    Identifier "Screen0"
    Device     "Nvidia0"
    Monitor    "Monitor0"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     16
        Modes    "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes    "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

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

Offline

#5 2005-04-03 20:42:03

CrayMk7
Member
From: Norway
Registered: 2004-03-29
Posts: 51

Re: Configuring multiple X screens (solved)

Hmm, I dont know what Im doing wrong here  :? .

This is how my xorg.conf looks like now and it still wont work.

Section "ServerLayout"
    Identifier     "Tv&Monitor"
    Screen 0       "Monitor" 
        Screen 1       "TV" leftOf "Monitor"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    RgbPath        "/usr/X11R6/lib/X11/rgb"
    ModulePath     "/usr/X11R6/lib/modules"
    FontPath       "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath       "/usr/X11R6/lib/X11/fonts/TTF/"
    FontPath       "/usr/X11R6/lib/X11/fonts/Type1/"
    FontPath       "/usr/X11R6/lib/X11/fonts/CID/"
    FontPath       "/usr/X11R6/lib/X11/fonts/75dpi/"
    FontPath       "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

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

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

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "mouse"
    Option           "Protocol"     "IMPS/2"
    Option           "Device"       "/dev/psaux"
        Option         "Buttons"      "3"
        Option         "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
    Identifier     "MonitorTarga"
        VertRefresh    31.5 - 96.0
        HorizSync      50.0 - 150.0
        Option         "ConnectedMonitor" "CRT"
EndSection

Section "Monitor"
        Identifier    "TVThomson"
        VertRefresh   30.0 - 50.0
        HorizSync     60.0 - 60.0
        Option        "ConnectedMonitor" "TV"
        Option        "TVStandard"       "PAL-B"
EndSection     

Section "Device"
    Identifier     "GF4Ti4200"
    Driver         "nvidia"
        Option         "Nologo"    "true
    BusID          "PCI:3:0:0"
        Screen         0
EndSection

Section "Device"
        Identifier    "GF4Ti4200TVOut"
        Driver        "nvidia"
        Option        "Nologo"      "true"
        BusID         "PCI:3:0:0"
        Screen        1
EndSection

Section "Screen"
    Identifier     "Monitor"
    Device         "GF4Ti4200"
    Monitor        "MonitorTarga"
        DefaultDepth   24
    SubSection "Display
        Depth        16
                Modes        "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Viewport     0 0
        Depth        24
                Modes        "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "Screen"
       Identifier     "TV"
       Device         "GF4Ti4200TVOut"         
       Monitor        "TVThomson"
       DefaultDepth   24
       SubSection "Display"
               Depth        24
               Modes        "1024x768"
       EndSubSection
EndSection

Offline

#6 2005-04-03 21:10:18

jsn
Member
From: Finland
Registered: 2005-03-29
Posts: 19
Website

Re: Configuring multiple X screens (solved)

You're missing atleast two " characters. Maybe more, i didnt spot them at all in
your first post so i may have missed some now too smile

CrayMk7 wrote:

Hmm, I dont know what Im doing wrong here  :? .

This is how my xorg.conf looks like now and it still wont work.

        Option         "Nologo"    "true

    SubSection "Display

Offline

#7 2005-04-03 21:37:35

CrayMk7
Member
From: Norway
Registered: 2004-03-29
Posts: 51

Re: Configuring multiple X screens (solved)

Heh, I saw  :oops: , but is only missing in my post, not in my xorg.conf file.

I had to edit it abit before posting, and too much was taken out.

This is how my xorg.conf looks like to get my X session started.

Section "ServerLayout"
    Identifier     "Tv&Monitor"
    Screen 0       "Monitor" 
#        Screen 1       "TV" leftOf "Monitor"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    RgbPath        "/usr/X11R6/lib/X11/rgb"
    ModulePath     "/usr/X11R6/lib/modules"
    FontPath       "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath       "/usr/X11R6/lib/X11/fonts/TTF/"
    FontPath       "/usr/X11R6/lib/X11/fonts/Type1/"
    FontPath       "/usr/X11R6/lib/X11/fonts/CID/"
    FontPath       "/usr/X11R6/lib/X11/fonts/75dpi/"
    FontPath       "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

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

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

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "mouse"
    Option           "Protocol"     "IMPS/2"
    Option           "Device"       "/dev/psaux"
        Option         "Buttons"      "3"
        Option         "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
    Identifier     "MonitorTarga"
        VertRefresh    31.5 - 96.0
        HorizSync      50.0 - 150.0
EndSection

#Section "Monitor"
#        Identifier    "TVThomson"
#        VertRefresh   30.0 - 50.0
#        HorizSync     60.0 - 60.0
#        Option        "TVStandard"       "PAL-B"
#EndSection     

Section "Device"
    Identifier     "GF4Ti4200"
    Driver         "nvidia"
        Option         "Nologo"    "true"
        BusID          "PCI:3:0:0"
        Screen         0
EndSection

#Section "Device"
#        Identifier    "GF4Ti4200TVOut"
#        Driver        "nvidia"
#        Option        "Nologo"      "true"
#        BusID         "PCI:3:0:0"
#        Screen        1
#EndSection

Section "Screen"
    Identifier     "Monitor"
    Device         "GF4Ti4200"
    Monitor        "MonitorTarga"
        DefaultDepth   24
    SubSection "Display"
        Depth        16
                Modes        "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth        24
                Modes        "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

#Section "Screen"
#       Identifier     "TV"
#       Device         "GF4Ti4200TVOut"         
#       Monitor        "TVThomson"
#       DefaultDepth   24
#       SubSection "Display"
#               Depth        24
#               Modes        "1024x768"
#       EndSubSection
#EndSection

Offline

#8 2005-04-03 21:54:17

CrayMk7
Member
From: Norway
Registered: 2004-03-29
Posts: 51

Re: Configuring multiple X screens (solved)

hmm this is wierd. when adding viewport 0 0 on my monitor it will allow me to run my xorg.conf file, but my TV is black, if I try to add viewport 0 1 to the screen section on my TV it will fail again.

Section "ServerLayout"
    Identifier     "Tv&Monitor"
    Screen 0       "Monitor" 0 0
        Screen 1       "TV" leftOf "Monitor"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    RgbPath        "/usr/X11R6/lib/X11/rgb"
    ModulePath     "/usr/X11R6/lib/modules"
    FontPath       "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath       "/usr/X11R6/lib/X11/fonts/TTF/"
    FontPath       "/usr/X11R6/lib/X11/fonts/Type1/"
    FontPath       "/usr/X11R6/lib/X11/fonts/CID/"
    FontPath       "/usr/X11R6/lib/X11/fonts/75dpi/"
    FontPath       "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

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

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

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "mouse"
    Option           "Protocol"     "IMPS/2"
    Option           "Device"       "/dev/psaux"
        Option         "Buttons"      "3"
        Option         "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
    Identifier     "MonitorTarga"
        VertRefresh    31.5 - 96.0
        HorizSync      50.0 - 150.0
EndSection

Section "Monitor"
        Identifier    "TVThomson"
        VertRefresh   30.0 - 50.0
        HorizSync     60.0 - 60.0
        Option        "TVStandard"       "PAL-B"
EndSection     

Section "Device"
    Identifier     "GF4Ti4200"
    Driver         "nvidia"
        Option         "Nologo"    "true"
        BusID          "PCI:3:0:0"
        Screen         0
EndSection

Section "Device"
        Identifier    "GF4Ti4200TVOut"
        Driver        "nvidia"
        Option        "Nologo"      "true"
        BusID         "PCI:3:0:0"
        Screen        1
EndSection

Section "Screen"
    Identifier     "Monitor"
    Device         "GF4Ti4200"
    Monitor        "MonitorTarga"
        DefaultDepth   24
    SubSection "Display"
                Viewport     0 0
        Depth        16
                Modes        "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
                Viewport     0 0
        Depth        24
                Modes        "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "Screen"
       Identifier     "TV"
       Device         "GF4Ti4200TVOut"         
       Monitor        "TVThomson"
       DefaultDepth   24
       SubSection "Display"
#              Viewport     0 1
               Depth        24
               Modes        "1024x768"
       EndSubSection
EndSection

Offline

#9 2005-04-03 22:08:16

jsn
Member
From: Finland
Registered: 2005-03-29
Posts: 19
Website

Re: Configuring multiple X screens (solved)

CrayMk7 wrote:

hmm this is wierd. when adding viewport 0 0 on my monitor it will allow me to run my xorg.conf file, but my TV is black, if I try to add viewport 0 1 to the screen section on my TV it will fail again.

Well here's one idea to test out: take these with copy/paste method: ServerLayout, Monitor section, Graphics Device Section & Screen Section from my xorg.conf mark with # your own part of those ones,
and change the AGP part to your PCI slot you're having your card in. Then check if its starts
to work out. Also the monitor frequence should be check to match your own. other than
that its not much work smile

The other idea: the text "leftOf" could it be "LeftOf" instead? i checked nvidia txt file it
seemed to be either way, but maybe worth testing?

Offline

#10 2005-04-03 22:17:25

jsn
Member
From: Finland
Registered: 2005-03-29
Posts: 19
Website

Re: Configuring multiple X screens (solved)

Also you could considering installing the latest Nvidia drivers too if you're running on older ones.

Btw, there should be /var/log/Xorg.0.log for better ideas than mine have being smile

Offline

#11 2005-04-03 22:38:57

CrayMk7
Member
From: Norway
Registered: 2004-03-29
Posts: 51

Re: Configuring multiple X screens (solved)

I will try to cut and paste from your file, but looking in my log file after Ive been able to run my xorg.conf, I see this.

(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 "NoLogo" "true"
(--) NVIDIA(0): Linear framebuffer at 0xD8000000
(--) NVIDIA(0): MMIO registers at 0xE1000000
(II) NVIDIA(0): NVIDIA GPU detected as: GeForce4 Ti 4200 with AGP8X
(--) NVIDIA(0): VideoBIOS: 04.28.20.05.00
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(II) NVIDIA(0): Detected AGP rate: 8X
(--) NVIDIA(0): VideoRAM: 131072 kBytes
(II) NVIDIA(0): Connected display device(s): CRT-1, TV-0
(WW) NVIDIA(0): Multiple displays connected, but only one display allowed;
(WW) NVIDIA(0):      using first display

and this

(**) 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 "NoLogo" "true"
(**) NVIDIA(1): Option "TVStandard" "PAL-B"
(**) NVIDIA(1): TV Standard string: "PAL-B"
(--) NVIDIA(1): Linear framebuffer at 0xD8000000
(--) NVIDIA(1): MMIO registers at 0xE1000000
(II) NVIDIA(1): NVIDIA GPU detected as: GeForce4 Ti 4200 with AGP8X
(--) NVIDIA(1): VideoBIOS: 04.28.20.05.00
(--) NVIDIA(1): Interlaced video modes are supported on this GPU
(II) NVIDIA(1): Detected AGP rate: 8X
(--) NVIDIA(1): VideoRAM: 131072 kBytes
(II) NVIDIA(1): Connected display device(s): CRT-1, TV-0
(--) NVIDIA(1): Detected TV Encoder: Philips 7104
(--) NVIDIA(1): Display device TV-0: maximum pixel clock at  8 bpp: 350 MHz
(--) NVIDIA(1): Display device TV-0: maximum pixel clock at 16 bpp: 350 MHz
(--) NVIDIA(1): Display device TV-0: maximum pixel clock at 32 bpp: 350 MHz
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Reloading /usr/X11R6/lib/modules/libddc.a
(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): TVThomson: Using hsync range of 50.00-60.00 kHz
(II) NVIDIA(1): TVThomson: Using vrefresh range of 30.00-50.00 Hz
(II) NVIDIA(1): Clock range:  12.00 to 350.00 MHz
(II) NVIDIA(1): Not using default mode "640x350" (hsync out of range)
(II) NVIDIA(1): Not using default mode "320x175" (hsync out of range)
(II) NVIDIA(1): Not using default mode "640x400" (hsync out of range)
(II) NVIDIA(1): Not using default mode "320x200" (hsync out of range)
(II) NVIDIA(1): Not using default mode "720x400" (hsync out of range)
(II) NVIDIA(1): Not using default mode "360x200" (hsync out of range)
(II) NVIDIA(1): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(1): Not using default mode "320x240" (hsync out of range)
(II) NVIDIA(1): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(1): Not using default mode "320x240" (hsync out of range)
(II) NVIDIA(1): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(1): Not using default mode "320x240" (hsync out of range)
(II) NVIDIA(1): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(1): Not using default mode "320x240" (hsync 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 "800x600" (hsync out of range)
(II) NVIDIA(1): Not using default mode "400x300" (hsync 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 "800x600" (hsync out of range)
(II) NVIDIA(1): Not using default mode "400x300" (hsync 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 "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" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "512x384" (vrefresh 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 "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" (vrefresh out of range)
(II) NVIDIA(1): Not using default mode "640x480" (vrefresh 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" (hsync out of range)
(II) NVIDIA(1): Not using default mode "576x384" (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 "1600x1024" (hsync out of range)
(II) NVIDIA(1): Not using default mode "800x512" (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" (bad mode clock/interlace/doublescan)
(II) NVIDIA(1): Not using default mode "1024x768" (hsync out of range)
(WW) NVIDIA(1): Mode pool is empty
(EE) NVIDIA(1): No modes remaining for display device TV-0
(EE) NVIDIA(1):  *** Aborting ***

Multiple displays connected, but only one display allowed;
Not using default mode "1024x768" (hsync out of range).

Isnt 50 - 60 hsync standard for a pal TV?

Now I have

Section "Monitor"
        Identifier    "TVThomson"
        VertRefresh   30.0 - 50.0
        HorizSync     50.0 - 60.0
        Option        "TVStandard"       "PAL-B"
EndSection

and

Section "Screen"
       Identifier     "TV"
       Device         "GF4Ti4200TVOut"         
       Monitor        "TVThomson"
       DefaultDepth   32
       SubSection "Display"
#              Viewport     0 1
               Depth        32
               Modes        "1024x768" "800x600" "640x480"
       EndSubSection
EndSection   

And still no picture on my TV, and Ive done my pacman -Suy today
wink

Offline

#12 2005-04-03 22:46:29

jsn
Member
From: Finland
Registered: 2005-03-29
Posts: 19
Website

Re: Configuring multiple X screens (solved)

It seems VertRefresh and HorizSync are wrong ways.

VertRefresh 30.0 - 50.0
HorizSync 50.0 - 60.0

Swap those numbers  so VertRefresh says 50.0 - 60.0
and HorizSync says 30.0 - 50.0

Offline

#13 2005-04-03 22:58:00

CrayMk7
Member
From: Norway
Registered: 2004-03-29
Posts: 51

Re: Configuring multiple X screens (solved)

Tanks for taking your time with me jsn.

You were rigth on the spot on those numbers, one error message gone from my xorg.0.log, but still one remains.

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

I have no clue whats causing this.

Offline

#14 2005-04-03 23:02:17

CrayMk7
Member
From: Norway
Registered: 2004-03-29
Posts: 51

Re: Configuring multiple X screens (solved)

Whohoo, it worked (a bit delayed) but my TV just turned on wit colors and all.

Thanks alot for walking me trough this jsn  big_smile .

Offline

#15 2005-04-03 23:06:58

jsn
Member
From: Finland
Registered: 2005-03-29
Posts: 19
Website

Re: Configuring multiple X screens (solved)

CrayMk7 wrote:

Tanks for taking your time with me jsn.

You were rigth on the spot on those numbers, one error message gone from my xorg.0.log, but still one remains.

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

I have no clue whats causing this.

You had same problem on monitor side, swap those ones too.

For the One Display allowed i kinda hurriedly googled this one:
http://www.nvnews.net/vbulletin/showthread.php?t=43079

Because i'm going to sleep, sorry for not getting it to work.. and being pretty damn blind tonigth smile

Offline

#16 2005-04-03 23:09:12

jsn
Member
From: Finland
Registered: 2005-03-29
Posts: 19
Website

Re: Configuring multiple X screens (solved)

CrayMk7 wrote:

Whohoo, it worked (a bit delayed) but my TV just turned on wit colors and all.

Thanks alot for walking me trough this jsn  big_smile .

Oh well, then my last post doesnt apply too well hahaha, ah great job.. i sleep much better now smile

No Problems, ah. zzZzz   heh.

Offline

Board footer

Powered by FluxBB