Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
separate working x-screens on monitor and connected tv
View unanswered posts
View posts from last 24 hours

Goto page 1, 2, 3  Next  
Reply to topic    Gentoo Forums Forum Index Documentation, Tips & Tricks
View previous topic :: View next topic  
Author Message
piefke
n00b
n00b


Joined: 05 Sep 2003
Posts: 57

PostPosted: Sat Jan 10, 2004 3:24 am    Post subject: separate working x-screens on monitor and connected tv Reply with quote

he ;)

searched the whole forum for a way to get my monitor and tv working.
possibilities:
1. two xserver, switching between them with alt+f7 | alt+f8, only one at the moment
2. one xserver, and a big screen over both output devices (xinerama,twinview etc)

cause i only want to use the tv-screen sometimes(looking videos with mplayer) and continue working on the monitor, both configurations were unacceptable.

this way explains the configuration for 2 seperate sessions.

let's start, open your XF86Config ..

add a second monitor:
Code:

Section "Monitor"
Identifier "Monitor[0]" #CRT
HorizSync 30-95
VertRefresh 50-160
EndSection

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

now add your tv-out-device:
Code:

Section "Device"
        Identifier      "Device[0]"
        Driver          "nvidia"
        BusID           "PCI:1:0:0" #adjust using 'lspci' or cat /proc/pci
        Screen 0
EndSection

Section "Device"
        Driver          "nvidia"
        Identifier      "Device[1]"
        Screen 1
        Option          "TVOutFormat" "Composite" #or S-VIDEO 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

and a second screen ..
Code:

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

    Subsection "Display"
        Depth       24
        Modes       "1600x1200"
        ViewPort    0 0
    EndSubsection
EndSection

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

change your serverlayout:
Code:

Section "ServerLayout"

    Identifier  "Simple Layout"
        Screen 0 "Screen[0]"
        Screen 1 "Screen[1]" RightOf "Screen[0]"

    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"

EndSection

ok should work, start x, you will have a session of your windowmanager on your monitor,and a separate on your tv. by moving your cursor to the right side, you get into the second session.

programs can be easily opened, by:

DISPLAY=:0.1 mplayer bla.avi

not really something new, but many people searched the forum for this configuration. :)
hope i could help somebody.

piefke
Back to top
View user's profile Send private message
_Nomad_
Guru
Guru


Joined: 11 Apr 2003
Posts: 571

PostPosted: Tue Jan 27, 2004 5:46 pm    Post subject: Reply with quote

This is the BEST tutorial I ever read :D

I've been looking for something like this for e very long time...
Really good job...
Back to top
View user's profile Send private message
_Nomad_
Guru
Guru


Joined: 11 Apr 2003
Posts: 571

PostPosted: Fri Jan 30, 2004 12:00 am    Post subject: Reply with quote

A nice extra feature is to add this entry in ~/.kde/share/apps/konqueror/servicemenus/nameofyourchoice.desktop

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

[Desktop Action PlayOnTV]
Exec=mplayer -display localhost:1 %F
Name=Play this movie on TV
Name[sv]=Spela upp film på TV
Icon=yast_tv


That way you get an extra item under actions in the menu when right clicking a video file (in konqueror that is) :lol:
Back to top
View user's profile Send private message
piefke
n00b
n00b


Joined: 05 Sep 2003
Posts: 57

PostPosted: Fri Jan 30, 2004 9:26 am    Post subject: Reply with quote

i am not using kde or anything else starting with `k` except of the kernel, but your solution seems to be nice. ;)
also thx for your praise, i am glad to hear that this tutorial helped somebody.
Back to top
View user's profile Send private message
theJPster
n00b
n00b


Joined: 24 Sep 2002
Posts: 32
Location: East Midlands, UK

PostPosted: Fri Jan 30, 2004 11:46 am    Post subject: Reply with quote

I've been doing this for ages on my PC but it never occured to me to make it a Tips 'n Tricks entry. D'oh. Good thinking!

Here's an old post of mine that describes this setup and mentions a few things about video (which I'll expand on here, so you don't have to view this link):
https://forums.gentoo.org/viewtopic.php?t=53082#317892

I found that on old versions of the driver you have to set the TV to "Screen 0" in the nVidia device section and "Screen 1" for the Monitor section. This DOES NOT change the 'screen' as far as X is concerned. :0.0 is still the monitor and :0.1 is still the TV. However it did seem to change a few things around when you run

Code:
xvinfo


I believe it switches the video blitter and the video overlay, so the TV gets the overlay and the monitor gets the blitter (you can't have overlay on both of them). Basically, it just seemed to stop videos tearing on my TV (but made them tear on the monitor instead).

I've also found that with TV Out enabled in this way, that when I switch back to the console (Ctrl+Alt+F1) I get a whole load of garbage. So, I made some scripts to start X with a different XF86Config (with TV Out disabled) for when I want to do some hardcore kernel work (which I use VCs for) instead of just enjoying my PC :) But it means I can't boot with a graphical login :(


JP
_________________
theJPster
Back to top
View user's profile Send private message
sr20seth
n00b
n00b


Joined: 04 Nov 2003
Posts: 55
Location: Carrollton, VA

PostPosted: Fri Feb 06, 2004 7:42 pm    Post subject: Reply with quote

One thing I have found useful is putting the TV below the monitor (virtually of course). That way you dont constantly go to the wrong screen. With Enlightenment putting it below made me very happy. I've been running this setup for quite a while, and it is good, but i didnt know i could pipe stuff to the TV. I have been opening an extra eterm in the second screen. THANKS!
Back to top
View user's profile Send private message
NewBlackDak
Guru
Guru


Joined: 02 Nov 2003
Posts: 512
Location: Utah County, UT

PostPosted: Sat Feb 07, 2004 4:34 am    Post subject: Reply with quote

Now the question is how you set up a seperate KB/mouse on each, so they're completely seperate. I found an X patch a long time ago to do this, but haven't been able to find it again.
_________________
Gentoo systems.
X2 4200+@2.6 - Athy
X2 3600+ - Myth
UltraSparc5 440 - sparcy
Back to top
View user's profile Send private message
sr20seth
n00b
n00b


Joined: 04 Nov 2003
Posts: 55
Location: Carrollton, VA

PostPosted: Sun Feb 08, 2004 5:44 am    Post subject: Reply with quote

the patch your talking about is a horrible hack from what i understand... at that point you may as well setup a 2nd lowend machine, and remote X into the first box.
Back to top
View user's profile Send private message
someguy
Guru
Guru


Joined: 10 Jul 2003
Posts: 433
Location: (-_-) .::OH_WELL::. (-_-)

PostPosted: Mon Mar 22, 2004 4:09 am    Post subject: sr20seth Reply with quote

it is ? i think this is a good hack 1 it reduces the amount of computers that your "other" has to complain about
2 go to 1.
_________________
print pack"C*",split/\D+/,`echo "16iII*o\U@{$/=$z;[(pop,pop,unpack"H*",<>
)]}\EsMsKsN0[lN*1lK[d2%Sa2/d0<X+d*lMLa^*lN%0]dsXx++lMlN/dsM0<J]dsJxp"|dc`
while [ 1 ] ; do echo "*" | telnet ip.of.print.er 9100 ; done
Back to top
View user's profile Send private message
sr20seth
n00b
n00b


Joined: 04 Nov 2003
Posts: 55
Location: Carrollton, VA

PostPosted: Mon Mar 22, 2004 2:30 pm    Post subject: Re: sr20seth Reply with quote

someguy wrote:
it is ? i think this is a good hack 1 it reduces the amount of computers that your "other" has to complain about
2 go to 1.


You misunderstood me. The idea itself is great. The implementation of the idea is a hack, because of the way the kernel handles consoles.
Back to top
View user's profile Send private message
elabdel
n00b
n00b


Joined: 19 Apr 2004
Posts: 71
Location: France

PostPosted: Sat May 01, 2004 9:48 pm    Post subject: Reply with quote

hello
Thanks for this topic, it works very good and can run mplayer to my TV but only on root user, how do I do for running
#DISPLAY=:0.1 gmplayer
on simple user ?
Back to top
View user's profile Send private message
Sastraxi
Apprentice
Apprentice


Joined: 25 Feb 2003
Posts: 258

PostPosted: Sun May 02, 2004 6:28 pm    Post subject: Reply with quote

Thanks a lot for the guide!
I have XFCE running on [:0.0], and mythfrontend running on [:0.1] now. A quick question, how would mythfrontend get focus again after I click something in XFCE? Seems a pain to kill it and restart it every time I want to give it focus.
Back to top
View user's profile Send private message
zurd
Apprentice
Apprentice


Joined: 17 Dec 2003
Posts: 228
Location: Canada, Montreal

PostPosted: Tue May 04, 2004 4:42 pm    Post subject: Reply with quote

Hi, I was wondering after reading and testing this guide, if it is possible to get at the same time, on monitor[0], a graphic acceleration from the GFX card and on the monitor[1] (which is the TV) the fbdev driver for framebuffer with no graphic acceleration.

If it would be possible in any way, then I couldn't make it work! here's my error :
WW) R128(0): Failed to set up write-combining range 0xe4000000,0x20000000 so it's complaining about my r128 driver from my ATI rage fury card, and, of course it's complaining about it, my TV doesn't like that, it wants the fbdev driver.

But then, even if I changed this r128 driver to fbdev, X would show but both my TV and my monitor will show the same thing at the same time, there is no multiple monitor as shown in this guide. So what am I missing ?

Here's some parts of my XF86Config file :

Code:
Section "Monitor"
        Identifier "Monitor[0]" #CRT
        HorizSync 30-74
        VertRefresh 40-160
        VendorName "Plug'n Play"
        ModelName "Relisys RE772"
EndSection

Section "Monitor"
        Identifier "Monitor[1]" #TV
        HorizSync 30-74
        VertRefresh 40-160
EndSection

Section "Device"
        Identifier      "Device[0]"
        Driver          "r128"
        #BusID           "PCI:1:0:0" #adjust using 'lspci' or cat /proc/pci
        Screen 0
        Option          "DPMS"
EndSection

Section "Device"
        Driver          "fbdev"
        Identifier      "Device[1]"
        Screen 1
        Option          "TVOutFormat" "S-VIDEO" #or S-VIDEO etc
        Option          "TVStandard" "NTSC" #or NTSC etc
        Option          "ConnectedMonitor" "Monitor[1]"
        Option          "DPMS"
        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 16

   Subsection "Display"
        Depth 16
        Modes "1024x768" "800x600" "640x480"
        Viewport 0 0
    EndSubsection
EndSection

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

Section "ServerLayout"
    Identifier  "Simple Layout"
    Screen 0 "Screen[0]"
    Screen 1 "Screen[1]" RightOf "Screen[0]"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection
Back to top
View user's profile Send private message
cossie
n00b
n00b


Joined: 11 May 2003
Posts: 5

PostPosted: Mon Jun 21, 2004 8:41 am    Post subject: Reply with quote

Hi,

this is my config. Your Tutorial works fine. But now i have the Problem that a Program that runs automatic by starting my KDE (in this case licq) is seen at my TV, not on my Desktop. I cant also go with my Mouse onto my TV-Screen. No way in there. What can be the Problem?


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

Section "Files"
EndSection

Section "Module"
        # Load "freetype"
        # Load "xtt"
        Load  "extmod"
        Load  "glx"
#       Load  "dri"
        Load  "dbe"
        Load  "record"
        Load  "xtrap"
        Load  "type1"
        Load  "speedo"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "ImPS/2"
        Option      "Device" "/dev/input/mice"
        Option      "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "keyboard"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "de"
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        HorizSync    31.5 - 82.0
        VertRefresh  50.0 - 100.0
  Gamma   0.75  0.75  0.75  # created by KGamma

EndSection

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

Section "Device"
        Identifier  "Card0"
        Driver      "nvidia"
        #ChipSet    "GeForce4 Ti 4200"
        #Card       "nv GeForce4 Ti 4200"
EndSection

Section "Device"
        Driver          "nvidia"
        Identifier      "Device[1]"
        Screen 1
        Option          "TVOutFormat" "Composite" #or S-VIDEO 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 "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultDepth     24
        SubSection "Display"
                Depth     24
                Modes    "1280x1024" "1280x960" "1152x864" "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 "DRI"
 Mode 0666
EndSection
Back to top
View user's profile Send private message
piefke
n00b
n00b


Joined: 05 Sep 2003
Posts: 57

PostPosted: Wed Jun 23, 2004 11:56 am    Post subject: Reply with quote

adjust the setting for your first device to:

Code:
Section "Device"
        Identifier  "Card0"
        Driver      "nvidia"
Screen 0
        #ChipSet    "GeForce4 Ti 4200"
        #Card       "nv GeForce4 Ti 4200"
EndSection
Back to top
View user's profile Send private message
tommy_haaland
Guru
Guru


Joined: 04 Oct 2003
Posts: 320

PostPosted: Sat Jun 26, 2004 7:47 pm    Post subject: Reply with quote

commenting the BusID line on Device[0] gets me into gnome, but I still doesn't see anything on my TV. I wonder if the BusID on Device[1] is wrong...now I got BusID "PCI:0:30:0". This is the output from XFree86 :1 -scanpci -verbose
Code:
XFree86 :1 -scanpci -verbose
(0:0:0) unknown card (0x1043/0x80ac) using an unknown chip (DeviceId 0x01e0) from nVidia Corporation
(0:0:1) unknown card (0x10de/0x0c17) using an unknown chip (DeviceId 0x01eb) from nVidia Corporation
(0:0:2) unknown card (0x10de/0x0c17) using an unknown chip (DeviceId 0x01ee) from nVidia Corporation
(0:0:3) unknown card (0x10de/0x0c17) using an unknown chip (DeviceId 0x01ed) from nVidia Corporation
(0:0:4) unknown card (0x10de/0x0c17) using an unknown chip (DeviceId 0x01ec) from nVidia Corporation
(0:0:5) unknown card (0x10de/0x0c17) using an unknown chip (DeviceId 0x01ef) from nVidia Corporation
(0:1:0) unknown card (0x1043/0x80ad) using a nVidia Corporation nForce2 ISA Bridge
(0:1:1) unknown card (0x1043/0x0c11) using a nVidia Corporation nForce2 SMBus (MCP)
(0:2:0) unknown card (0x1043/0x0c11) using a nVidia Corporation nForce2 USB Controller
(0:2:1) unknown card (0x1043/0x0c11) using a nVidia Corporation nForce2 USB Controller
(0:2:2) unknown card (0x1043/0x0c11) using a nVidia Corporation nForce2 USB Controller
(0:8:0) unknown chip (DeviceId 0x006c) from nVidia Corporation
(0:9:0) unknown card (0x1043/0x0c11) using a nVidia Corporation nForce2 IDE
(0:30:0) Gammagraphx, Inc. card using a nVidia Corporation nForce2 AGP
(1:8:0) unknown card (0x1102/0x8067) using a Creative Labs SB Live! EMU10k1
(1:8:1) unknown card (0x1102/0x0020) using a Creative Labs SB Live! MIDI/Game Port
(1:9:0) unknown card (0x1799/0x5000) using a Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+
(2:0:0) unknown card (0x10b0/0x0431) using an unknown chip (DeviceId 0x0322) from nVidia Corporation
Back to top
View user's profile Send private message
tommy_haaland
Guru
Guru


Joined: 04 Oct 2003
Posts: 320

PostPosted: Sat Jun 26, 2004 8:51 pm    Post subject: Reply with quote

DISPLAY=:0.1 mplayer -fs movie.avi gives me the following:


vo: couldn't open the X11 display (:0.1)!
vo: couldn't open the X11 display (:0.1)!
[vo_gl] Using 4 as slice_height (0 means image_height).
vo: couldn't open the X11 display (:0.1)!
vo: couldn't open the X11 display (:0.1)!
vo: couldn't open the X11 display (:0.1)!
Back to top
View user's profile Send private message
piefke
n00b
n00b


Joined: 05 Sep 2003
Posts: 57

PostPosted: Sat Jun 26, 2004 9:22 pm    Post subject: Reply with quote

Code:
(2:0:0) unknown card (0x10b0/0x0431) using an unknown chip (DeviceId 0x0322) from nVidia Corporation
seems to be your card.

but please tell me the content of /proc/pci.
Back to top
View user's profile Send private message
tommy_haaland
Guru
Guru


Joined: 04 Oct 2003
Posts: 320

PostPosted: Sat Jun 26, 2004 9:50 pm    Post subject: Reply with quote

Hi :-)

This is the contens of /proc/pci:
Code:
tux root # cat /proc/pci
PCI devices found:
  Bus  0, device   0, function  0:
    Host bridge: PCI device 10de:01e0 (nVidia Corporation) (rev 162).
      Prefetchable 32 bit memory at 0xd8000000 [0xdbffffff].
  Bus  0, device   0, function  1:
    RAM memory: PCI device 10de:01eb (nVidia Corporation) (rev 162).
  Bus  0, device   0, function  2:
    RAM memory: PCI device 10de:01ee (nVidia Corporation) (rev 162).
  Bus  0, device   0, function  3:
    RAM memory: PCI device 10de:01ed (nVidia Corporation) (rev 162).
  Bus  0, device   0, function  4:
    RAM memory: PCI device 10de:01ec (nVidia Corporation) (rev 162).
  Bus  0, device   0, function  5:
    RAM memory: PCI device 10de:01ef (nVidia Corporation) (rev 162).
  Bus  0, device   1, function  0:
    ISA bridge: nVidia Corporation nForce2 ISA Bridge (rev 163).
  Bus  0, device   1, function  1:
    SMBus: nVidia Corporation nForce2 SMBus (MCP) (rev 162).
      IRQ 23.
      Master Capable.  No bursts.  Min Gnt=3.Max Lat=1.
      I/O at 0xe800 [0xe81f].
  Bus  0, device   2, function  0:
    USB Controller: nVidia Corporation nForce2 USB Controller (rev 163).
      IRQ 20.
      Master Capable.  No bursts.  Min Gnt=3.Max Lat=1.
      Non-prefetchable 32 bit memory at 0xe0001000 [0xe0001fff].
  Bus  0, device   2, function  1:
    USB Controller: nVidia Corporation nForce2 USB Controller (#2) (rev 163).
      IRQ 22.
      Master Capable.  No bursts.  Min Gnt=3.Max Lat=1.
      Non-prefetchable 32 bit memory at 0xe0002000 [0xe0002fff].
  Bus  0, device   2, function  2:
    USB Controller: nVidia Corporation nForce2 USB Controller (rev 163).
      IRQ 21.
      Master Capable.  No bursts.  Min Gnt=3.Max Lat=1.
      Non-prefetchable 32 bit memory at 0xe0003000 [0xe00030ff].
  Bus  0, device   8, function  0:
    PCI bridge: PCI device 10de:006c (nVidia Corporation) (rev 163).
      Master Capable.  No bursts.  Min Gnt=2.Max Lat=2.
  Bus  0, device   9, function  0:
    IDE interface: nVidia Corporation nForce2 IDE (rev 162).
      Master Capable.  No bursts.  Min Gnt=3.Max Lat=1.
      I/O at 0xf000 [0xf00f].
  Bus  0, device  30, function  0:
    PCI bridge: nVidia Corporation nForce2 AGP (rev 162).
      Master Capable.  Latency=32.  Min Gnt=10.
  Bus  1, device   8, function  0:
    Multimedia audio controller: Creative Labs SB Live! EMU10k1 (rev 10).
      IRQ 18.
      Master Capable.  Latency=32.  Min Gnt=2.Max Lat=20.
      I/O at 0xd000 [0xd01f].
  Bus  1, device   8, function  1:
    Input device controller: Creative Labs SB Live! MIDI/Game Port (rev 10).
      Master Capable.  Latency=32.
      I/O at 0xd400 [0xd407].
  Bus  1, device   9, function  0:
    Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 16).
      IRQ 17.
      Master Capable.  Latency=32.  Min Gnt=32.Max Lat=64.
      I/O at 0xd800 [0xd8ff].
      Non-prefetchable 32 bit memory at 0xdf000000 [0xdf0000ff].
  Bus  2, device   0, function  0:
    VGA compatible controller: PCI device 10de:0322 (nVidia Corporation) (rev 161).
      IRQ 19.
      Master Capable.  Latency=248.  Min Gnt=5.Max Lat=1.
      Non-prefetchable 32 bit memory at 0xdc000000 [0xdcffffff].
      Prefetchable 32 bit memory at 0xd0000000 [0xd7ffffff].
Back to top
View user's profile Send private message
piefke
n00b
n00b


Joined: 05 Sep 2003
Posts: 57

PostPosted: Sat Jun 26, 2004 11:34 pm    Post subject: Reply with quote

Code:
Bus  2, device   0, function  0:
    VGA compatible controller: PCI device 10de:0322 (nVidia Corporation) (rev 161).
      IRQ 19.
      Master Capable.  Latency=248.  Min Gnt=5.Max Lat=1.
      Non-prefetchable 32 bit memory at 0xdc000000 [0xdcffffff].
      Prefetchable 32 bit memory at 0xd0000000 [0xd7ffffff].

you see PCI:2:0:0 is your BusID. therefore append 'BusID "PCI:2:0:0"' at each device definition.
Back to top
View user's profile Send private message
tommy_haaland
Guru
Guru


Joined: 04 Oct 2003
Posts: 320

PostPosted: Sun Jun 27, 2004 1:30 am    Post subject: Reply with quote

Hi again :)

Having BusID "PCI:2:0:0" won't even let me into gnome, the screen becomes black and I have to manually reboot the computer. Commenting BusID on device[0], and having BusID "PCI:0:30:0" on device[1] makes me get into Gnome just fine, but I still don't see anything om my TV. However, when I look through /var/log/XFree86.0.log , I see this:
Code:

(II) Primary Device is: PCI 02:00:0
(--) Assigning device section with no busID to primary device
(--) NVIDIA(0): Detected TV Encoder: NVIDIA
(WW) NVIDIA(0): Multiple displays connected, but only one display allowed;
(WW) NVIDIA(0):      using first display

I tried alt + f6/f7 to change between displays, but nothing happened at all.
I can post my xf86config if wanted.
Back to top
View user's profile Send private message
piefke
n00b
n00b


Joined: 05 Sep 2003
Posts: 57

PostPosted: Sun Jun 27, 2004 9:02 am    Post subject: Reply with quote

yes, XF86Config could be helpful, also append XFree86.0.log by using 'BusID "PCI:2:0:0"' :)
Back to top
View user's profile Send private message
tommy_haaland
Guru
Guru


Joined: 04 Oct 2003
Posts: 320

PostPosted: Sun Jun 27, 2004 9:08 am    Post subject: Reply with quote

This is my XF86Config, and with this config I get into gnome, but I cannot see anything on my TV. If I modify BusID to PCI:2:0:0 , I don't get into gnome, my screen gets black. I have tried so many possibilities now, and have concluded with that I only get into gnome with BusID "PCI:0:30:0".



Code:
# **********************************************************************
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **********************************************************************
#
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 Type1 and FreeType 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)
#
# If you don't have a floating point coprocessor and emacs, Mosaic or other
# programs take long to start up, try moving the Type1 and Speedo directory
# to the end of this list (or comment them out).
#

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

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

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

EndSection

# **********************************************************************
# Server flags section.
# **********************************************************************

Section "ServerFlags"

# Uncomment this to cause a core dump at the spot where a signal is
# received.  This may leave the console in an unusable state, but may
# provide a better stack trace in the core dump to aid in debugging

#    Option "NoTrapSignals"

# Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
# (where n is 1 through 12).  This allows clients to receive these key
# events.

#    Option "DontVTSwitch"

# Uncomment this to disable the <Crtl><Alt><BS> server abort sequence
# This allows clients to receive this key event.

#    Option "DontZap"

# Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching
# sequences.  This allows clients to receive these key events.

#    Option "Dont Zoom"

# Uncomment this to disable tuning with the xvidtune client. With
# it the client can still run and fetch card and monitor attributes,
# but it will not be allowed to change them. If it tries it will
# receive a protocol error.

#    Option "DisableVidModeExtension"

# Uncomment this to enable the use of a non-local xvidtune client.

#    Option "AllowNonLocalXvidtune"

# Uncomment this to disable dynamically modifying the input device
# (mouse and keyboard) settings.

#    Option "DisableModInDev"

# Uncomment this to enable the use of a non-local client to
# change the keyboard or mouse settings (currently only xset).

#    Option "AllowNonLocalModInDev"

EndSection

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

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

Section "InputDevice"

    Identifier   "Keyboard1"
    Driver   "Keyboard"

# For most OSs the protocol can be omitted (it defaults to "Standard").
# When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
# uncomment the following line.

#    Option     "Protocol"      "Xqueue"

    Option "AutoRepeat" "500 30"

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#    Option   "Xleds"      "1 2 3"

#    Option "LeftAlt"     "Meta"
#    Option "RightAlt"    "ModeShift"

# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#    Option "XkbModel"    "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
#    Option "XkbModel"    "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#    Option "XkbLayout"   "de"
# or:
#    Option "XkbLayout"   "de"
#    Option "XkbVariant"  "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#    Option "XkbOptions"  "ctrl:swapcaps"

# These are the default XKB settings for XFree86
#    Option "XkbRules"    "xfree86"
#    Option "XkbModel"    "pc101"
#    Option "XkbLayout"   "us"
#    Option "XkbVariant"  ""
#    Option "XkbOptions"  ""

#    Option "XkbDisable"

    Option "XkbRules"   "xfree86"
    Option "XkbModel"   "logiink"
    Option "XkbLayout"   "no"

EndSection


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

Section "InputDevice"
        Identifier  "Mouse1"
        Driver      "mouse"
        Option      "Protocol" "ExplorerPS/2"
        Option      "Device" "/dev/input/mice"
        Option      "Buttons" "7"
        Option      "ZAxisMapping" "6 7"
        Option      "Resolution" "100"
 


#  Mouse-speed setting for PS/2 mouse.

#    Option "Resolution"   "256"

# When using XQUEUE, comment out the above two lines, and uncomment
# the following line.

#    Option "Protocol"   "Xqueue"

# Baudrate and SampleRate are only for some Logitech mice. In
# almost every case these lines should be omitted.

#    Option "BaudRate"   "9600"
#    Option "SampleRate"   "150"

# Emulate3Buttons is an option for 2-button Microsoft mice
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)

#    Option "Emulate3Buttons"
#    Option "Emulate3Timeout"    "50"

# ChordMiddle is an option for some 3-button Logitech mice

#    Option "ChordMiddle"

EndSection


# **********************************************************************
# Other input device sections
# this is optional and is required only if you
# are using extended input devices.  This is for example only.  Refer
# to the XF86Config man page for a description of the options.
# **********************************************************************
#
# Section "InputDevice"
#    Identifier  "Mouse2"
#    Driver      "mouse"
#    Option      "Protocol"      "MouseMan"
#    Option      "Device"        "/dev/mouse2"
# EndSection
#
# Section "InputDevice"
#    Identifier "spaceball"
#    Driver     "magellan"
#    Option     "Device"        "/dev/cua0"
# EndSection
#
# Section "InputDevice"
#    Identifier "spaceball2"
#    Driver     "spaceorb"
#    Option     "Device"        "/dev/cua0"
# EndSection
#
# Section "InputDevice"
#    Identifier "touchscreen0"
#    Driver     "microtouch"
#    Option     "Device"        "/dev/ttyS0"
#    Option     "MinX"          "1412"
#    Option     "MaxX"          "15184"
#    Option     "MinY"          "15372"
#    Option     "MaxY"          "1230"
#    Option     "ScreenNumber"  "0"
#    Option     "ReportingMode" "Scaled"
#    Option     "ButtonNumber"  "1"
#    Option     "SendCoreEvents"
# EndSection
#
# Section "InputDevice"
#    Identifier "touchscreen1"
#    Driver     "elo2300"
#    Option     "Device"        "/dev/ttyS0"
#    Option     "MinX"          "231"
#    Option     "MaxX"          "3868"
#    Option     "MinY"          "3858"
#    Option     "MaxY"          "272"
#    Option     "ScreenNumber"  "0"
#    Option     "ReportingMode" "Scaled"
#    Option     "ButtonThreshold"       "17"
#    Option     "ButtonNumber"  "1"
#    Option     "SendCoreEvents"
# EndSection

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

Section "Monitor"
    Identifier  "Monitor[0]"  #CRT
    HorizSync   30-70
    VertRefresh 50-160
EndSection


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


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

Section "Device"
    Identifier  "Device[0]"
    Driver      "nvidia"
    #VideoRam    131072
    # Insert Clocks lines here if appropriate
    #BusID           "PCI:2:0:0"
    Screen 0
EndSection

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


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

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

    Subsection "Display"
        Depth       24
        Modes       "1024x768"
        ViewPort    0 0
    EndSubsection
EndSection


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


# **********************************************************************
# ServerLayout sections.
# **********************************************************************
Section "ServerLayout"

    Identifier  "Simple Layout"

    Screen 0  "Screen[0]"
    Screen 1  "Screen[1]" RightOf "Screen[0]"
   

    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"

EndSection

# Section "DRI"
#    Mode 0666
# EndSection

Back to top
View user's profile Send private message
piefke
n00b
n00b


Joined: 05 Sep 2003
Posts: 57

PostPosted: Sun Jun 27, 2004 10:38 am    Post subject: Reply with quote

seems you tried to set the BusID to different values in each device. set both BusID ´s to "PCI:2:0:0" or as a second possibility report the happening by commenting out both BusID ´s.
one logfile would be really helpful.
PCI:0:30:0 makes no sense cause i couldn´t find a clue of this device in your system.
moreover give information about the used hardware (graphiccard, mainboard). according to the deviceid you are using a fx5200 but please correct me.
Back to top
View user's profile Send private message
tommy_haaland
Guru
Guru


Joined: 04 Oct 2003
Posts: 320

PostPosted: Sun Jun 27, 2004 11:35 am    Post subject: Reply with quote

Setting both BusID's to "PCI:2:0:0", and I can't even go into gnome. The same if i comment out both BusID's.
My graphic card is a Gainward fx 5200 128mb. Main board is a asus a7n8x.

This is XFree86.0.log.old
Code:

This is a pre-release version of XFree86, and is not supported in any
way.  Bugs may be reported to XFree86@XFree86.Org and patches submitted
to fixes@XFree86.Org.  Before reporting bugs in pre-release versions,
please check the latest version in the XFree86 CVS repository
(http://www.XFree86.Org/cvs).

XFree86 Version 4.3.0.1
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.6.4-wolk-2.3 i686 [ELF]
Build Date: 15 April 2004
   Before reporting problems, check http://www.XFree86.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/XFree86.0.log", Time: Sun Jun 27 13:21:43 2004
(==) Using config file: "/etc/X11/XF86Config"
(==) ServerLayout "Simple Layout"
(**) |-->Screen "Screen[0]" (0)
(**) |   |-->Monitor "Monitor[0]"
(**) |   |-->Device "Device[0]"
(**) |-->Screen "Screen[1]" (1)
(**) |   |-->Monitor "Monitor[1]"
(**) |   |-->Device "Device[1]"
(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Keyboard1"
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "logiink"
(**) XKB: model: "logiink"
(**) Option "XkbLayout" "no"
(**) XKB: layout: "no"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to "/usr/X11R6/lib/X11/fonts/local/,/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(++) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
   XFree86 ANSI C Emulation: 0.2
   XFree86 Video Driver: 0.6
   XFree86 XInput driver : 0.4
   XFree86 Server Extension : 0.2
   XFree86 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="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   Module class: XFree86 Font Renderer
   ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,01e0 card 1043,80ac rev a2 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 10de,01eb card 10de,0c17 rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:2: chip 10de,01ee card 10de,0c17 rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:3: chip 10de,01ed card 10de,0c17 rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:4: chip 10de,01ec card 10de,0c17 rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:5: chip 10de,01ef card 10de,0c17 rev a2 class 05,00,00 hdr 80
(II) PCI: 00:01:0: chip 10de,0060 card 1043,80ad rev a3 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,0064 card 1043,0c11 rev a2 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,0067 card 1043,0c11 rev a3 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,0067 card 1043,0c11 rev a3 class 0c,03,10 hdr 80
(II) PCI: 00:02:2: chip 10de,0068 card 1043,0c11 rev a3 class 0c,03,20 hdr 80
(II) PCI: 00:08:0: chip 10de,006c card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:09:0: chip 10de,0065 card 1043,0c11 rev a2 class 01,01,8a hdr 00
(II) PCI: 00:1e:0: chip 10de,01e8 card 0000,0000 rev a2 class 06,04,00 hdr 01
(II) PCI: 01:08:0: chip 1102,0002 card 1102,8067 rev 0a class 04,01,00 hdr 80
(II) PCI: 01:08:1: chip 1102,7002 card 1102,0020 rev 0a class 09,80,00 hdr 80
(II) PCI: 01:09:0: chip 10ec,8139 card 1799,5000 rev 10 class 02,00,00 hdr 00
(II) PCI: 02:00:0: chip 10de,0322 card 10b0,0431 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,2), 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-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:8:0), (0,1,1), BCTRL: 0x0202 (VGA_EN is cleared)
(II) Bus 1 I/O range:
   [0] -1   0   0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
   [0] -1   0   0xde000000 - 0xdfffffff (0x2000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 2 non-prefetchable memory range:
   [0] -1   0   0xdc000000 - 0xddffffff (0x2000000) MX[B]
(II) Bus 2 prefetchable memory range:
   [0] -1   0   0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
(--) PCI:*(2:0:0) nVidia Corporation unknown chipset (0x0322) 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 - 0xdf0000ff (0x100) MX[B]
   [1] -1   0   0xe0003000 - 0xe00030ff (0x100) MX[B]
   [2] -1   0   0xe0002000 - 0xe0002fff (0x1000) MX[B]
   [3] -1   0   0xe0001000 - 0xe0001fff (0x1000) MX[B]
   [4] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [5] -1   0   0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
   [6] -1   0   0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
   [7] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B]
   [8] -1   0   0x0000d400 - 0x0000d407 (0x8) IX[B]
   [9] -1   0   0x0000d000 - 0x0000d01f (0x20) IX[B]
   [10] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [11] -1   0   0x0000e800 - 0x0000e81f (0x20) IX[B]
(II) Active PCI resource ranges after removing overlaps:
   [0] -1   0   0xdf000000 - 0xdf0000ff (0x100) MX[B]
   [1] -1   0   0xe0003000 - 0xe00030ff (0x100) MX[B]
   [2] -1   0   0xe0002000 - 0xe0002fff (0x1000) MX[B]
   [3] -1   0   0xe0001000 - 0xe0001fff (0x1000) MX[B]
   [4] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [5] -1   0   0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
   [6] -1   0   0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
   [7] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B]
   [8] -1   0   0x0000d400 - 0x0000d407 (0x8) IX[B]
   [9] -1   0   0x0000d000 - 0x0000d01f (0x20) IX[B]
   [10] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [11] -1   0   0x0000e800 - 0x0000e81f (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   0xdf000000 - 0xdf0000ff (0x100) MX[B]
   [6] -1   0   0xe0003000 - 0xe00030ff (0x100) MX[B]
   [7] -1   0   0xe0002000 - 0xe0002fff (0x1000) MX[B]
   [8] -1   0   0xe0001000 - 0xe0001fff (0x1000) MX[B]
   [9] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [10] -1   0   0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
   [11] -1   0   0xdc000000 - 0xdcffffff (0x1000000) MX[B](B)
   [12] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [13] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [14] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B]
   [15] -1   0   0x0000d400 - 0x0000d407 (0x8) IX[B]
   [16] -1   0   0x0000d000 - 0x0000d01f (0x20) IX[B]
   [17] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [18] -1   0   0x0000e800 - 0x0000e81f (0x20) IX[B]
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   Module class: XFree86 Server Extension
   ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   Module class: XFree86 Server Extension
   ABI class: XFree86 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 DPMS
(II) Loading extension FontCache
(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/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.2
   Module class: XFree86 Font Renderer
   ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "speedo"
(II) Loading /usr/X11R6/lib/modules/fonts/libspeedo.a
(II) Module speedo: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.1
   Module class: XFree86 Font Renderer
   ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Speedo
(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.4496
   Module class: XFree86 Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   Module class: XFree86 XInput Driver
   ABI class: XFree86 XInput driver, version 0.4
(II) NVIDIA XFree86 Driver  1.0-4496  Wed Jul 16 19:06:03 PDT 2003
(II) NVIDIA Unified Driver for all NVIDIA GPUs
(II) Primary Device is: PCI 02:00:0
(--) Assigning device section with no busID to primary device
(--) Assigning device section with no busID to primary device
(WW) Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWSave from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWSave from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWRestore from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWRestore from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWUnmapMem from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbCloseScreen from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbWinPrivateIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbWinPrivateIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbCreateWindow from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbCreateGC from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbGCPrivateIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbValidateGC from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbPictureInit from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol vgaHWGetIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbWinPrivateIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbWinPrivateIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbWinPrivateIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!

   *** If unresolved symbols were reported above, they might not
   *** be the reason for the server aborting.

Fatal server error:
Caught signal 11.  Server aborting


When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file "/var/log/XFree86.0.log".
Please report problems to xfree86@xfree86.org.

Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Documentation, Tips & Tricks All times are GMT
Goto page 1, 2, 3  Next
Page 1 of 3

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum