LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 10-01-2006, 05:38 PM   #1
hazmatt20
Member
 
Registered: Jan 2006
Distribution: FC5, Ubuntu
Posts: 126

Rep: Reputation: 15
GeForce 7600GT in FC5 crashes X on dual screen


So, I bought a new ASUS motherboard so I could get a PCIe graphics card. Bought a GeForce 7600GT. By default, dual monitors come up with the same screen, however, if I try to enable dual head, X crashes on load. I have tried most of the drivers available from nvidia's page with the same result. Display shows the card as "nVidia Corporation Unknown device 0391." What do I do?
 
Old 10-01-2006, 11:40 PM   #2
hazmatt20
Member
 
Registered: Jan 2006
Distribution: FC5, Ubuntu
Posts: 126

Original Poster
Rep: Reputation: 15
Well, I was able to fix it by manually editing xorg.conf. Kinda disheartening that I can't use the display GUI without crashing X, though. Here's my xorg.conf. It's halfway auto-generated, halfway edited.

Code:
Section "ServerLayout"
        Identifier      "Separate Desktops"
        Screen          0 "Screen0"
        Screen          1 "Screen1" RightOf "Screen0"
        InputDevice     "Mouse0" "CorePointer"
        InputDevice     "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        FontPath     "unix/:7100"
EndSection

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

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "us"
EndSection

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

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Unknown monitor"
        HorizSync    31.5 - 37.9
        VertRefresh  50.0 - 70.0
        Option      "dpms"
EndSection

Section "Monitor"
        Identifier   "Monitor1"
        VendorName   "Monitor Vendor"
        ModelName    "Unknown monitor"
        HorizSync    31.5 - 37.9
        VertRefresh  50.0 - 70.0
        Option      "dpms"
EndSection

Section "Device"
        Identifier      "nv0"
        Driver          "nvidia"
        BusID           "PCI:1:0:0"
        Screen          0
        Option "NoLogo" "1"
1280x1024,NULL; 1024x768,NULL"
        Option "NoTwinViewXineramaInfo"
EndSection

Section "Device"
        Identifier      "nv1"
        Driver          "nvidia"
        BusId           "PCI:1:0:0"
        Screen          1
        Option "NoLogo" "1"
1280x1024,NULL; 1024x768,NULL"
#       Option "NoTwinViewXineramaInfo"
EndSection

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

Section "Screen"
        Identifier "Screen1"
        Device     "nv1"
        Monitor    "Monitor1"
        DefaultDepth     16
        SubSection "Display"
                Viewport   0 0
                Depth     16
                Modes    "1280x1024" "1280x960" "1152x864" "1024x768" "800x600"
        EndSubSection
EndSection

Section "DRI"
        Group        0
        Mode         0666
EndSection
 
Old 10-02-2006, 04:27 AM   #3
fozner
Member
 
Registered: Aug 2006
Posts: 147

Rep: Reputation: 16
While we're on the subject, I had the same troubles only I set out to edit manually right from the start. I was surprised to see that Nvidia detects the old analog monitor as primary display and the new digital monitor is secondary. Naturally, I have the digital on the left, so I had to use LeftOf to swap positions of the displays in software. Then I had to go into KDE and move the icons and taskbar to the other desktop.

Here's my good, working xorg.conf. For brevity, I'm only showing the video section, not the input device and other stuff.

Code:
# Small analog flat panel monitor on the right.
# For some reason nvidia detects it as primary monitor...
Section "Monitor"
    Identifier     "Righty"
    VendorName     "NEC"
    ModelName      "MultiSync LCD 1525M"
    Option         "DPMS"
EndSection

# big digital flat panel monitor on the left
# Nvidia detects it as secondary monitor. Yes, confusing!
Section "Monitor"
    Identifier     "Lefty"
    VendorName     "Envision"
    ModelName      "EN9250"
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "BigScreen"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
         Option "TwinView"
# metamodes are reversed because we are using LeftOf
    Option "MetaModes" "1024x768@1024x1024, 1280x1024; 800x600@800x768, 1024x768; , 1024x768; , 800x600; , 640x480"
# We use LeftOf to swap positions of right and left monitor
         Option "TwinViewOrientation"      "LeftOf"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "BigScreen"
# Doesn't seem to matter which Monitor we put here
    Monitor        "Lefty"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes      "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
 
  


Reply



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

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



Similar Threads
Thread Thread Starter Forum Replies Last Post
Kernel Panic FC5 2.6.17 when running with Geforce fx 5200 dracuss Fedora 1 08-05-2006 10:18 PM
Slow FPS full screen FC5 using Nvidia GeForce MMX 400 sponghead Linux - Hardware 6 07-28-2006 09:47 AM
Using S-Video output on nVidia GeForce FX5200 in FC5 Icy Linux - Hardware 2 06-04-2006 04:20 PM
Firefox and Epiphany crashes in FC5 dabang Fedora 4 04-04-2006 11:07 AM
Setting up Dual Monitors on GeForce 6600GT dual DVI card. monkiidansu Linux - Hardware 1 09-29-2005 02:21 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

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

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