Fedora Linux Support Community & Resources Center
  #1  
Old 31st January 2010, 10:19 AM
ice00 Offline
Registered User
 
Join Date: Jan 2010
Posts: 4
linuxfedorafirefox
Configure two video cards (ATI and Nvidia)

hi,

Due to the miss of proprietary drivers from AMD for Fedora 12, I have installed a second video card in my system (a Nvidia one) for BOINC calculation. This card is not connected to a monitor.

So in the system I have this two cards:
ATI Shappire Radeon HD2600XT (256MB)
Asus Nvidia Geoforce 6600 (356MB)

The ATI is in the first PCI express device, the Nvidia to the second PCI express:

Code:
lspci | grep VGA
01:00.0 VGA compatible controller: ATI Technologies Inc RV630 [Radeon HD 2600XT]
04:00.0 VGA compatible controller: nVidia Corporation NV43 [GeForce 6600] (rev a2)
So I have used this Xorg configuration file (if I let Xorg to configure without the configuration file, it sets NVidia to default card and X files to start):

Code:
more /etc/X11/xorg.conf
# Xorg configuration created by system-config-display

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

Section "Files"
        ModulePath   "/usr/lib64/xorg/modules/extensions/nvidia"
        ModulePath   "/usr/lib64/xorg/modules"                  
EndSection                                                      

Section "ServerFlags"
    Option         "AIGLX" "on"
EndSection                     

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

Section "Device"
        Identifier  "Videocard0"
        Driver      "radeon"    
        BusID       "PCI:1:0:0" 
EndSection                      

Section "Device"
        Identifier  "Videocard1"
        Driver      "nvidia"
        Option      "SLI" "False"
        Option      "MultiGPU" "False"
        Option      "AddARGBGLXVisuals" "False"
        BusID       "PCI:4:0:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

Section "Screen"
        Identifier "Screen1"
        Device     "Videocard1"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

Section "Extensions"
    Option         "Composite" "Enable"
EndSection
The Nvidia driver were installed as described in some forum:

1) disabling nouveau in grub configuration
Code:
kernel /boot/vmlinuz-2.6.31.12-174.2.3.fc12.x86_64 ro root=UUID=a5d981b4-0ff7-4453-9d61-ef40487d829e  LANG=it_IT.UTF-
8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=it rhgb quiet rdblacklist=nouveau
2) Take SElinux to alow the driver:
Quote:
setsebool -P allow_execstack on
With this, the driver is correctly loaded in memory:

Code:
lsmod |grep nvidia
nvidia               9624568  0
i2c_core               28976  2 nvidia,i2c_i801
but the Xorg says that not Nvidia Driver where found (see the attack file).

These are the NVIDIA driver installed:

Code:
rpm -qa | grep nvidia
xorg-x11-drv-nvidia-libs-190.53-1.fc12.x86_64
kmod-nvidia-190.53-1.fc12.1.x86_64
kmod-nvidia-2.6.31.12-174.2.3.fc12.x86_64-190.53-1.fc12.1.x86_64
kmod-nvidia-2.6.31.9-174.fc12.x86_64-190.53-1.fc12.x86_64
nvidia-settings-1.0-3.2.fc12.x86_64
xorg-x11-drv-nvidia-190.53-1.fc12.x86_64
nvidia-xconfig-1.0-1.fc12.x86_64
What can I do to make NVIDIA driver to work?

Thanks
Attached Files
File Type: gz Xorg.0.log.tar.gz (8.1 KB, 80 views)
Reply With Quote
  #2  
Old 31st January 2010, 11:08 AM
Nokia's Avatar
Nokia Offline
Registered User
 
Join Date: Aug 2006
Location: /dev/realm/{Abba,Carpenters,...stage}
Posts: 3,286
linuxfedorafirefox
Blacklisting ATI ? Radeonhd IIRC.
__________________
For safer browsing, use OpenDNS nameservers 208.67.222.222 and 208.67.220.220

SELinux User Guide

AutoPager
Reply With Quote
  #3  
Old 31st January 2010, 11:37 AM
ice00 Offline
Registered User
 
Join Date: Jan 2010
Posts: 4
linuxfedorafirefox
Here the blacklist.conf:

Code:
cat /etc/modprobe.d/blacklist.conf
#                                                       
# Listing a module here prevents the hotplug scripts from loading it.
# Usually that'd be so that some other driver will bind it instead,  
# no matter which driver happens to get probed first.  Sometimes user
# mode tools can also control driver binding.                        
#                                                                    
# Syntax:  driver name alone (without any spaces) on a line. Other   
# lines are ignored.                                                 
#                                                                    

# watchdog drivers
blacklist i8xx_tco

# framebuffer drivers
blacklist aty128fb
blacklist atyfb
blacklist radeonfb
blacklist i810fb
blacklist cirrusfb
blacklist intelfb
blacklist kyrofb
blacklist i2c-matroxfb
blacklist hgafb
blacklist nvidiafb
blacklist rivafb
blacklist savagefb
blacklist sstfb
blacklist neofb
blacklist tridentfb
blacklist tdfxfb
blacklist virgefb
blacklist vga16fb

# ISDN - see bugs 154799, 159068
blacklist hisax
blacklist hisax_fcpcipnp

# sound drivers
blacklist snd-pcsp

# ati driver
blacklist radeon
blacklist radeonhd
Reply With Quote
Reply

Tags
ati, cards, configure, nvidia, video

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
switching video cards nVidia to ATI mitchell2345 Hardware & Laptops 10 2nd January 2007 10:02 PM
ati video cards eugen_r2 Using Fedora 2 19th April 2006 08:02 PM
How to configure 2 Ethernet cards and the Internet config banner Servers & Networking 7 27th April 2005 06:18 PM
Fun with video cards. mictubis Hardware & Laptops 1 22nd May 2004 03:33 PM


Current GMT-time: 14:25 (Saturday, 18-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat