LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Red Hat
User Name
Password
Red Hat This forum is for the discussion of Red Hat Linux.

Notices


Reply
  Search this Thread
Old 08-14-2010, 01:19 PM   #1
Net4Hack
LQ Newbie
 
Registered: Aug 2010
Location: Ireland
Posts: 5

Rep: Reputation: 0
RHEL 5.4 not compatible with NVIDIA GEFORCE GO 7600 !


I am trying for Redhat certification on RHEL 5.4. When i tried to install it on my Acer laptop with NVIDIA GEFORCE GO 7600, I was only able to install it in CUI mode and no GUI. From NVIDIA website I tried both the newest and oldest version they have for Linux, which is with .run extension. I tried installing it using sh <drivername.run> and it is starting the wizard, but exiting abruptly, with a kernel error.

Any one have similar issues? Any idea how to work around on this issue? Any generic driver that would work for this display adaptor? Any idea whether version 5.5 would work with this card?
 
Old 08-14-2010, 01:32 PM   #2
snowday
Senior Member
 
Registered: Feb 2009
Posts: 4,667

Rep: Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411
Quote:
Originally Posted by irishindian View Post
I am trying for Redhat certification
So, imagine you've passed the exam, and you are now a Red Hat Certified Engineer. A client has hired you to solve his problem with his Nvidia video card. What do you do?
 
Old 08-14-2010, 03:13 PM   #3
Net4Hack
LQ Newbie
 
Registered: Aug 2010
Location: Ireland
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by snowpine View Post
So, imagine you've passed the exam, and you are now a Red Hat Certified Engineer. A client has hired you to solve his problem with his Nvidia video card. What do you do?
First let me install the OS correctly, study it and pass the exam!

Anyway just to answer your question, incompatible hardware, that wud be my answer to the client!
 
Old 08-14-2010, 03:13 PM   #4
DrLove73
Senior Member
 
Registered: Sep 2009
Location: Srbobran, Serbia
Distribution: CentOS 5.5 i386 & x86_64
Posts: 1,118
Blog Entries: 1

Rep: Reputation: 129Reputation: 129
Uninstall all tried drivers for nvidia cards and install driver from ELRepo repository.

And you just might be wrong to say it like that and most likely be wrong.
 
Old 08-14-2010, 03:50 PM   #5
Net4Hack
LQ Newbie
 
Registered: Aug 2010
Location: Ireland
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by DrLove73 View Post
Uninstall all tried drivers for nvidia cards and install driver from ELRepo repository.
Thanks DrLove73,
ButI couldnt find the supported driver for 7600 series in any of the following "Packages"

nvidia-x11-drv
nvidia-x11-drv-96xx
nvidia-x11-drv-173xx

Any suggestion?
 
Old 08-14-2010, 04:25 PM   #6
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,634

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by irishindian View Post
First let me install the OS correctly, study it and pass the exam!
You said you could install via text mode. So that gets the OS installed correctly.
Quote:
Anyway just to answer your question, incompatible hardware, that wud be my answer to the client!
Spell out your words. And if you WOULD say that to a client, you'd be clearly wrong, and probably not invited back.

First, the video card can be installed and used by using the built-in VESA or VGA drivers. That will get you going in a GUI mode...which is NOT needed or recommended for a server. Second, you could install the kernel-source, and when the nVidia driver installs, it'll build the correct version for your running kernel.
 
Old 08-15-2010, 04:29 AM   #7
DrLove73
Senior Member
 
Registered: Sep 2009
Location: Srbobran, Serbia
Distribution: CentOS 5.5 i386 & x86_64
Posts: 1,118
Blog Entries: 1

Rep: Reputation: 129Reputation: 129
This: http://www.daniweb.com/forums/thread220864.html comfirms (along with nVidia download page) that Go 7600 should be supported on at least 180.xx version of the driver, most likely in
Quote:
nvidia-x11-drv-256.44-1.el5.elrepo
(nvidia-x11-drv). Until you try you can not be sure (you wrote you could not FIND support, not that you tried to installed it and it did not recognize it).
 
Old 08-15-2010, 04:39 AM   #8
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# yum install kernel-devel

.. is what it takes to build nvidia on RH EL.
( + of course gcc , make.)
..
 
Old 08-15-2010, 09:05 AM   #9
Net4Hack
LQ Newbie
 
Registered: Aug 2010
Location: Ireland
Posts: 5

Original Poster
Rep: Reputation: 0
Solved the problem. You could use the vesa generic driver. For any one facing similar trouble, instructions follows.

"vesa" driver is generic driver and works fine with all Graphics Cards.
Boot up from LiveCD of any Linux distro, mount / partition of RHEL or boot up in command line mode and create xorg.conf file manually.

1. Edit /etc/X11/xorg.conf

2. Edit the existing code and paste the following lines in to the file.
-------------------------
Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
HorizSync 31.5 - 70.0
VertRefresh 50 - 160
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768"
EndSubsection
EndSection
-----------------------
Save file and reboot machine.
If your runlevel is 3 change it to 5, to get GUI every time you boot
 
Old 08-15-2010, 12:10 PM   #10
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,634

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by irishindian View Post
Solved the problem. You could use the vesa generic driver. For any one facing similar trouble, instructions follows.

"vesa" driver is generic driver and works fine with all Graphics Cards.
Boot up from LiveCD of any Linux distro, mount / partition of RHEL or boot up in command line mode and create xorg.conf file manually.
Really?!?!? Almost like I told you in my first reply?
 
Old 08-15-2010, 01:02 PM   #11
Net4Hack
LQ Newbie
 
Registered: Aug 2010
Location: Ireland
Posts: 5

Original Poster
Rep: Reputation: 0
Wink

Quote:
Originally Posted by TB0ne View Post
Really?!?!? Almost like I told you in my first reply?


A smart idiot is better than a stupid genius ...


Samuel Goldwyn



Last edited by Net4Hack; 08-15-2010 at 01:03 PM.
 
Old 08-15-2010, 02:03 PM   #12
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,634

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by irishindian View Post

A smart idiot is better than a stupid genius ...
Samuel Goldwyn
...says the person who couldn't read the directions on the nVidia installer.

Insulting folks here isn't a good way for you to get any further help from ANYONE. Do you really expect anyone here to put effort into helping you, when you don't read the information that's given to you, or even acknowledge it?
 
Old 08-15-2010, 03:34 PM   #13
DrLove73
Senior Member
 
Registered: Sep 2009
Location: Srbobran, Serbia
Distribution: CentOS 5.5 i386 & x86_64
Posts: 1,118
Blog Entries: 1

Rep: Reputation: 129Reputation: 129
Quote:
Originally Posted by irishindian View Post

A smart idiot is better than a stupid genius ...
Samuel Goldwyn

Actually, he wrote:
Quote:
Give me a smart idiot over a stupid genius any day
At least it is consistent with your reading disability.
 
  


Reply

Tags
geforce, nvidia, redhat, rhel



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



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Is NVIDIA Geforce 7050 Linux Compatible ? obnascar Linux - Hardware 18 10-05-2010 06:37 PM
Running in low graphics mode - nvidia GeForce 7600, Ubuntu 8.04 Loxodonte Linux - Hardware 2 03-04-2010 12:36 PM
Nvidia Geforce 7600 GS drivers sigma_50 Linux - Hardware 2 12-30-2007 03:08 PM
E6750( 32 or 64bit), nVidia GeForce 8600 GT (beryl compatible ?) johngrinham Linux - Hardware 4 12-10-2007 04:46 PM
Beryl and nvidia Geforce 7600 GS gbj Linux - Desktop 14 02-04-2007 05:04 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Red Hat

All times are GMT -5. The time now is 01:55 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration