Find the answer to your Linux question:
Page 2 of 3 FirstFirst 1 2 3 LastLast
Results 11 to 20 of 23
FIG JAM? Now I have to learn a new abbreviation. Edit: OK, I looked it up. I'm Good!...
  1. #11
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,570


    FIG JAM?

    Now I have to learn a new abbreviation.

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

    Please do not send Private Messages to me with requests for help. I will not reply.

  2. #12
    j1s
    j1s is offline
    Just Joined! j1s's Avatar
    Join Date
    Nov 2006
    Location
    Norway
    Posts
    90
    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

  3. #13
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,570
    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 send Private Messages to me with requests for help. I will not reply.

  4. #14
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,570
    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 send Private Messages to me with requests for help. I will not reply.

  5. #15
    j1s
    j1s is offline
    Just Joined! j1s's Avatar
    Join Date
    Nov 2006
    Location
    Norway
    Posts
    90
    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...

  6. #16
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,570
    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 send Private Messages to me with requests for help. I will not reply.

  7. #17
    j1s
    j1s is offline
    Just Joined! j1s's Avatar
    Join Date
    Nov 2006
    Location
    Norway
    Posts
    90
    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.


  8. #18
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,570
    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 send Private Messages to me with requests for help. I will not reply.

  9. #19
    j1s
    j1s is offline
    Just Joined! j1s's Avatar
    Join Date
    Nov 2006
    Location
    Norway
    Posts
    90
    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.

  10. #20
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,570
    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.
    Last edited by waterhead; 10-15-2008 at 11:11 AM.
    Paul

    Please do not send Private Messages to me with requests for help. I will not reply.

Page 2 of 3 FirstFirst 1 2 3 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •