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 > Redhat / Fedora Linux Help > nVidia driver problem in FC4

Forgot Password?
 Redhat / Fedora Linux Help   Help and discussion related to Redhat and Fedora Linux.

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 06-28-2005   #1 (permalink)
Just Joined!
 
Join Date: May 2005
Location: Reykjavik,Iceland
Posts: 21
Send a message via MSN to Gardar
nVidia driver problem in FC4

Hi.

Well I've posted this before and I still havent managed to work this out. But I did some more checking out what could possibly be wrong.

Im using Fedora Core 4.

Well I've installed the new driver properly and
Code:
modprobe nvidia
show's that the latest driver is installed, how ever it seems to be a problem with my xorg.conf.

Theese are the modules loaded, I know I have to remove the one named "dri"

Code:
ection "Module"
        Load  "dbe"
        Load  "extmod"
        Load  "fbdevhw"
        Load  "glx"
        Load  "record"
        Load  "freetype"
        Load  "type1"
#      Load  "dri"                                                                                                         
$EndSection
this is my Device thing.. I know I have to change the "nv" to "nvidia"

Section "Device"
Identifier "Videocard0"
Driver "nv"
VendorName "Videocard vendor"
BoardName "NVIDIA GeForce FX (generic)"
EndSection


now my problem is... when I change driver to "nvidia" and switch from root to my regular user the screen just stays black no nvidia logo or anything like they say it should be.
I read on a forum that you should do

Code:
 cat /proc/driver/nvidia/agp/card
It displays that my agp has

Fastwrite support and some other things like
8X
4X
Everything seems to work in #runlevel 3 that is,so it seems like the driver should be working properly But it just wont start x

Code:
 lsmod
the worst thing is My log file doesn't show any Error and I get no Error message after I kill x

Has anyone had this problem before ? or does anyone know a way to fix this ?

With thanks in Advance *kisses*
Gardar is offline  


Reply With Quote
Old 06-29-2005   #2 (permalink)
Super Moderantor
 
techieMoe's Avatar
 
Join Date: Aug 2004
Location: Texas
Posts: 9,259
Did you reboot after installing the driver? Is your xorg.conf still correct after reboot? What errors do you get when you type startx as a regular user from the console?
__________________
Registered Linux user #270181
TechieMoe's Tech Rants
techieMoe is offline   Reply With Quote
Old 06-29-2005   #3 (permalink)
Just Joined!
 
Join Date: Apr 2005
Location: Atlanta
Posts: 55
Send a message via AIM to superdan7 Send a message via Yahoo to superdan7
Re:

superdan7 is offline   Reply With Quote
Old 06-29-2005   #4 (permalink)
Super Moderantor
 
techieMoe's Avatar
 
Join Date: Aug 2004
Location: Texas
Posts: 9,259
Re:

Quote:
Originally Posted by superdan7
http://fedoranews.org/contributors/stanton_finley/fc3_note/#nVidia

Maybe this will help
That tutorial addresses an issue in Fedora Core 3, which as far as I know (because it didn't happen for me in FC4) has already been fixed. However there is another tutorial linked on that page for Fedora Core 4 (link here). For the record, I did not need to do any of the exotic things they claim in order to get 3D working with the Nvidia drivers in FC4.
__________________
Registered Linux user #270181
TechieMoe's Tech Rants
techieMoe is offline   Reply With Quote
Old 06-29-2005   #5 (permalink)
Just Joined!
 
Join Date: Apr 2005
Location: Atlanta
Posts: 55
Send a message via AIM to superdan7 Send a message via Yahoo to superdan7
Re:

Cool
superdan7 is offline   Reply With Quote
Old 06-29-2005   #6 (permalink)
Linux Newbie
 
Join Date: Apr 2005
Posts: 110
Send a message via MSN to greenpenguin
If you're not using the latest drivers that might be you're problem - as soon as I used the latest ones it was fine. Mind you, that's with FC3...
greenpenguin is offline   Reply With Quote
Old 06-29-2005   #7 (permalink)
Super Moderantor
 
techieMoe's Avatar
 
Join Date: Aug 2004
Location: Texas
Posts: 9,259
Quote:
Originally Posted by greenpenguin
If you're not using the latest drivers that might be you're problem - as soon as I used the latest ones it was fine. Mind you, that's with FC3...
Good point. The latest (as of today) are version 7667, available here.
__________________
Registered Linux user #270181
TechieMoe's Tech Rants
techieMoe is offline   Reply With Quote
Old 06-29-2005   #8 (permalink)
Just Joined!
 
Join Date: Jun 2005
Location: Bulgaria, Peshtera
Posts: 66
Send a message via ICQ to neocoolXIIK Send a message via AIM to neocoolXIIK Send a message via MSN to neocoolXIIK Send a message via Yahoo to neocoolXIIK
yup, I agree. You shouldn't have trouble with the latest drivers. I installed them two days ago. It went quite smoothly ...
neocoolXIIK is offline   Reply With Quote
Old 06-29-2005   #9 (permalink)
Just Joined!
 
Join Date: Jun 2005
Posts: 38
I had the EXACT same problem and finally figured it out after 5-6 hours...

You HAVE to install the updates, I just installed every update not knowing which one would fix it since i'm a Linux noob. Then...

Follow these steps after you got ALL of the updates...

1.) Download and save the Nvidia driver to somewhere...

2.) Ctrl + Alt + F2

3.) Login as Root, once logged in type...
Code:
init 3
4.) Go to the dir you saved the driver, and type...
Code:
sh nvid* --update
5.) Now you have to edit the "xorg.conf" file, so type...
Code:
vi /etc/X11/xorg.conf
Under the "Driver" "Device" you need to change "nv" to... "nvidia".

NOTE: You said you had to remove the dri under "Module"... YOU DON'T CHANGE THAT!!! I thought that too, but you don't! ONLY CHANGE THE "nv" to "nvidia" in the xorg.conf.

Now save the xorg.conf by typing
Code:
:wq
(make sure you are out of insert mode by pushing esc)

6.) Now type...
Code:
modprobe nvidia
7.) Type...
Code:
init 5
8.) Now that should be it! A reboot would be nice =)
hlstriker is offline   Reply With Quote
Old 06-29-2005   #10 (permalink)
Super Moderantor
 
techieMoe's Avatar
 
Join Date: Aug 2004
Location: Texas
Posts: 9,259
Quote:
Originally Posted by hlstriker
You HAVE to install the updates, I just installed every update not knowing which one would fix it since i'm a Linux noob.
Actually, the two systems I installed FC4 on were factory installs, no updates needed. I agree with the rest of your steps though. That's the way I do it.
__________________
Registered Linux user #270181
TechieMoe's Tech Rants
techieMoe 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 06:15 AM.






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

Content Relevant URLs by vBSEO 3.3.0 RC2