| Red Hat This forum is for the discussion of Red Hat Linux. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
08-14-2010, 01:19 PM
|
#1
|
|
LQ Newbie
Registered: Aug 2010
Location: Ireland
Posts: 5
Rep:
|
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?
|
|
|
|
08-14-2010, 01:32 PM
|
#2
|
|
Senior Member
Registered: Feb 2009
Posts: 3,149
|
Quote:
Originally Posted by irishindian
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?
|
|
|
|
08-14-2010, 03:13 PM
|
#3
|
|
LQ Newbie
Registered: Aug 2010
Location: Ireland
Posts: 5
Original Poster
Rep:
|
Quote:
Originally Posted by snowpine
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!
|
|
|
|
08-14-2010, 03:13 PM
|
#4
|
|
Senior Member
Registered: Sep 2009
Location: Srbobran, Serbia
Distribution: CentOS 5.5 i386 & x86_64
Posts: 1,115
Rep: 
|
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.
|
|
|
|
08-14-2010, 03:50 PM
|
#5
|
|
LQ Newbie
Registered: Aug 2010
Location: Ireland
Posts: 5
Original Poster
Rep:
|
Quote:
Originally Posted by DrLove73
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?
|
|
|
|
08-14-2010, 04:25 PM
|
#6
|
|
Guru
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 12,008
|
Quote:
Originally Posted by irishindian
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.
|
|
|
|
08-15-2010, 04:29 AM
|
#7
|
|
Senior Member
Registered: Sep 2009
Location: Srbobran, Serbia
Distribution: CentOS 5.5 i386 & x86_64
Posts: 1,115
Rep: 
|
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).
|
|
|
|
08-15-2010, 04:39 AM
|
#8
|
|
LQ 5k Club
Registered: Jan 2008
Location: Copenhagen, DK
Distribution: pclos2012.8, Slack1337 DebSqueeze, +50+ other Linux OS, for test only.
Posts: 11,762
|
# yum install kernel-devel
.. is what it takes to build nvidia on RH EL.
( + of course gcc , make.)
..
|
|
|
|
08-15-2010, 09:05 AM
|
#9
|
|
LQ Newbie
Registered: Aug 2010
Location: Ireland
Posts: 5
Original Poster
Rep:
|
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
|
|
|
|
08-15-2010, 12:10 PM
|
#10
|
|
Guru
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 12,008
|
Quote:
Originally Posted by irishindian
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?
|
|
|
|
08-15-2010, 01:02 PM
|
#11
|
|
LQ Newbie
Registered: Aug 2010
Location: Ireland
Posts: 5
Original Poster
Rep:
|
Quote:
Originally Posted by TB0ne
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.
|
|
|
|
08-15-2010, 02:03 PM
|
#12
|
|
Guru
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 12,008
|
Quote:
Originally Posted by irishindian
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?
|
|
|
|
08-15-2010, 03:34 PM
|
#13
|
|
Senior Member
Registered: Sep 2009
Location: Srbobran, Serbia
Distribution: CentOS 5.5 i386 & x86_64
Posts: 1,115
Rep: 
|
Quote:
Originally Posted by irishindian
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.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 11:19 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|