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