Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > Your Distro > Ubuntu Help > Two Nvidia graphic cards

Forgot Password?
 Ubuntu Help   Discussion and help about Ubuntu, Kubuntu, Xubuntu, and all the Ubuntu family

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 10-05-2008   #11 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,957
FIG JAM?

Now I have to learn a new abbreviation.

Edit: OK, I looked it up. I'm Good!
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline  


Reply With Quote
Old 10-06-2008   #12 (permalink)
j1s
Just Joined!
 
j1s's Avatar
 
Join Date: Nov 2006
Location: Norway
Posts: 82
The problem remains.... This is my lspci | grep -i vga output
Code:
02:00.0 VGA compatible controller: nVidia Corporation GeForce 400 GS (rev a1)
04:05.0 VGA compatible controller: nVidia Corporation NV34 [GeForce FX 5200] (rev a1)
... and this is my xorg.conf ...

Code:
Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"no"
	Option		"XkbOptions"	"lv3:ralt_switch"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
EndSection

Section "Device"
	Identifier	"nvidia0"
	Driver		"nv"
	Busid		"PCI:2:0:0"
	Screen		0
EndSection

Section "Device"
	Identifier	"nvidia1"
	Driver		"nv"
	Busid		"PCI:4:5:0"
	Screen		1
EndSection

Section "Screen"
	Identifier	"screen0"
	Device		"nvidia0"
	Monitor		"monitor0"
	Defaultdepth	24
	SubSection "Display"
		Depth	24
		Modes	"1280x1024" "800x600"
	EndSubSection
EndSection

Section "Screen"
	Identifier	"screen1"
	Device		"nvidia1"
	Monitor		"monitor1"
	Defaultdepth	24
	SubSection "Display"
		Depth	24
		Modes	"1280x1024" "800x600"
	EndSubSection
EndSection

Section "Monitor"
	Identifier	"monitor1"
	Vendorname	"Samsung"
	Modelname	"Samsung SyncMaster 191TFT"
	Horizsync	30.0-81.0
	Vertrefresh	56.0-85.0
	Gamma	1.0
EndSection
Section "Monitor"
	Identifier	"monitor0"
	Vendorname	"Acer"
	Modelname	"Acer 1703"
	Gamma	1.0
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen 0 "screen0"
	Screen 1 "screen1" LeftOf "screen0"
EndSection
 	
Section "Module"
	Load		"glx"
	Load		"GLcore"
	Load		"v4l"
EndSection

Section "ServerFlags"
EndSection
It does not matter if I change the driver to nvidia nor vesa.

I appreciate any replies.

J
j1s is offline   Reply With Quote
Old 10-06-2008   #13 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,957
You could look through the X log file. Maybe it will give some clues as to why it isn't accepting your config. It is found in the /var/log folder.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 10-07-2008   #14 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,957
I learned of a new command today that will give you a lot of video card info:
Code:
xdpyinfo
I don't know if it will help you any, but it's still a neat little command.

Also try xdpyinfo --help for more info.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 10-07-2008   #15 (permalink)
j1s
Just Joined!
 
j1s's Avatar
 
Join Date: Nov 2006
Location: Norway
Posts: 82
Hi,

the xdpyinfo can be found here xdpyinfo.txt

and my Xorg.9.log fil goes here Xorg.log

These two files are a lot of info, but I do not have the knowledge to use it...

Need help.

I find however this line.

Code:
(EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found)
But again, I do not know how to use it...
j1s is offline   Reply With Quote
Old 10-07-2008   #16 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,957
I should have caught this earlier.

It looks like you are not using the nVidia driver, but the open source nv driver. You cannot expect to use these nVidia cards fully unless you actually use the nVidia driver.

The nVidia driver is not open source, and therefore not included with most Linux distros. You should be able to install a version of it from the Ubuntu repositories. In the main menu look for something called "Hardware Drivers". It should have your video card(s) listed, and the nVidia driver. Check the box to enable it, and it will download and install it. Make sure that the xorg.config file says nvidia instead of nv.

If you want the latest and greatest nVidia driver, you can download and compile it from nVidia. This is a little more involving, and will have to be done over if you upgrade your kernel.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 10-08-2008   #17 (permalink)
j1s
Just Joined!
 
j1s's Avatar
 
Join Date: Nov 2006
Location: Norway
Posts: 82
I've downloaded the new driver from nVidia, and compiled it. (I had to sudo apt-get install build-essentials first. After that it compiled with no warnings or errors.)

Just befor the login-screen appears, the nVidia logo is displayed, in a fragment of a second. I've tried to change the driver from nv to nvidia and even vesa and vga. The two last one resulted in a config program to appear. But it didn't help much.

j1s is offline   Reply With Quote
Old 10-08-2008   #18 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,957
After installing the driver from nVidia (which you did), run this command.
Code:
sudo nvidia-xconfig
The you can open the display settings console to make adjustments.
Code:
sudo nvidia-settings
Do this with root permissions (sudo), because there is the option to save the settings to the xorg.config file. The fact that the nVidia logo is displayed a startup is a good sign.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 10-08-2008   #19 (permalink)
j1s
Just Joined!
 
j1s's Avatar
 
Join Date: Nov 2006
Location: Norway
Posts: 82
Hi,

tried these commands after work, today, but sadly, it's the same result.

Only one screen is showing the desktop.

ARGH!!

I'm soon loosing my temper. Luckily I'm going away for the weekend, starting tomorrow. Won't be back until Sunday.

Thanks anyway, Mr. Waterhead.
j1s is offline   Reply With Quote
Old 10-08-2008   #20 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,957
Those two commands are just to get the nVidia driver set up and working on normal setups. Since you have two cards, a bit more work is needed.

When you ran the nvidia-settings program, did it have both of your cards listed? They will be on the left side, with a name like GPU 0 and GPU 1. Click on it and take a look at the cards info. The BusID is listed differently than the lspci command gives. Use this in your xorg.config file. Also check things like the IRQ, to make sure both cards aren't using the same one.

Also, near the top of the left side, click on "X Server Display Configuration". Here you can configure the displays. Click on one of the displays showing in the window, and the click on the "Configure" button. I think that you want to choose "Separate X Screen".

I never tried to video cards, so I don't know how they would appear in the nvidia-settings program. It seems like you should be able to do it all from there, but tweaking of the xorg.config file may still be necessary.

What you are trying to do is rather uncommon, so patience is needed. I may not have the final solution to this, but at least you are now on the right track. You may want to seek help at a forum that specializes in Linux multimedia PC's, the Linux section of AVS Forums.

HTPC - Linux Chat - AVS Forum

I am a member of that forum, and a wealth of information can be found for audio and video in Linux.
__________________
Paul

Please do not PM me with requests for help. I will not reply.

Last edited by waterhead; 10-15-2008 at 11:11 AM..
waterhead is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 10:44 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2