LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 03-06-2004, 12:11 AM   #1
goulartca
LQ Newbie
 
Registered: Sep 2003
Location: USA
Distribution: Suse 9.1
Posts: 16

Rep: Reputation: 0
Unhappy Suse 9 and Nvidia GForce FX 5200


I installed Suse 9 on a new box with the AMD Athlon 64 3000 processor. The motherboard is a K8VT800(Pro) and I have an EGA card with the Nvidia GForce FX 5200 (128Mb).

The install process finished with no problems and gave me the warning that the Nvidia driver with 3D was not installed and I should run "YOU" to get the most recent driver from Nvidia. When I followed the instructions and restarted X I received a black screen and X would not start.

I then tried to follow the Suse HOWTO instructions to download the installer from the Nvidia site. I downloaded the AMD-64 version of the driver, rebooted at run level 3, downloaded kernel-source and tried to run the the Nvidia installer.

The Nvidia installer aborted with a message stating that I was trying to install the 64-bit driver on a 32-bit kernel (?).

Has anyone been able to enable 3D on Suse 9 with the Athlon 64? If so, are the instructions anywhere that I can follow?

Thanks in advance.

Last edited by goulartca; 03-06-2004 at 12:12 AM.
 
Old 03-06-2004, 01:10 AM   #2
Pwnz3r
Member
 
Registered: Jan 2004
Location: Lancaster, OH
Distribution: Gentoo
Posts: 393

Rep: Reputation: 30
You obviously don't have the kernel compiled with support for 64bit processors. If you know enough about your system, go grab the latest kernel sources from kernel.org and uncompress it to /usr/src.

NOTE: Become super user for the whole thing. Since you don't have X, use lynx and connect to ftp.kernel.org or transfer it from another comp or drive if you have a dual boot.

Use this command:

bzip2 -d /path-to-kernel-tarball.tar.bz2 /usr/src

ftp://ftp.kernel.org/pub/linux/kerne....4-rc2.tar.bz2

That's the link to the newest kernel. Now, time to compile it. Cd to the directory containing the kernel sources (cd /usr/src/linux-2.6.4-rc2) and type make menuconfig. If this is new to you then just navigate in it and choose what you need for your hardware. In processor type and features you'll need to make sure to choose the AMD 64 (K8) option.

After you have configured the new kernel, type "make bzImage && make modules && make modules_install && make install".

After everything gets done then within the /usr/src directory, type ln -s linux-2.6.4-rc2 linux to make sure the compiler and such knows what kernel it's working with and that the drivers get the kernel headers that are neccessary.

Now you'll need to configure your bootloader to run the new kernel. If you don't know how to do that, now is a good time to learn how. I use LILO, so here's my config section for the 2.6.4-rc2 kernel.
Code:
boot=/dev/hdb
map=/boot/map
install=/boot/boot.b
prompt
timeout=50
lba32
default=linux-2.6.4-rc2

image=/boot/vmlinuz-2.6.4-rc2
    label=linux-2.6.1
    read-only
    root=/dev/hdb1
    vga=0x317
    append="root=/dev/hdb1 splash=verbose hdc=ide-scsi real_root=/dev/hdb1 init=/linuxrc"

image=/boot/vmlinuz-2.6.4-rc1
    label=linux-2.6.4-rc1
    read-only
    root=/dev/hdb1
    vga=0x317
    append="root=/dev/hdb1 splash=verbose hdc=ide-scsi real_root=/dev/hdb1 init=/linuxrc"

image=/boot/kernel-2.4.20-gentoo-r6
    label=linux-2.4.20
    read-only
    root=/dev/hdb1
    vga=792
    initrd=/boot/initrd-2.4.20-gentoo-r6
    append="root=/dev/hdb1 init=/linuxrc"

image=/boot/vmlinuz-2.6.4-rc2
    label=linuxnofb
    read-only
    root=/dev/hdb1
    vga=normal
    append="root=/dev/hdb1 init=/linuxrc"

image=/boot/vmlinuz-2.6.4-rc2
    label=failsafe
    read-only
    root=/dev/hdb1
    vga=normal
    append="failsafe"
That is in /etc/lilo.conf and is only a model, so don't copy/paste mine without changing a bit. If you use GRUB, then I'm not sure how to configure it but it shouldn't be much harder. After that, type lilo and if there are no errors reported then it should be okay to reboot. Also, make sure you point your bootloader to the actual old kernel because the new one will make a sym link to it that the old one might be set to and therefor you'll technically only have one kernel so if it doesn't work then you're screwed.

If you boot your system then run the installer for the nvidia drivers and it should work.

I also recommend possibly getting Gentoo because it makes doing this a breeze and can be customized for any application, desktop or server, and is very fast and lite.
 
Old 03-06-2004, 03:25 PM   #3
goulartca
LQ Newbie
 
Registered: Sep 2003
Location: USA
Distribution: Suse 9.1
Posts: 16

Original Poster
Rep: Reputation: 0
Thanks for your response. You were right on about the kernel not being AMD64. It is using the Athlon optimized kernel provided by Suse. I decided to go 64-bit and since there are many threads with driver issues for this platform I went ahead and ordered the Suse 9 version for AMD64.

This will cost me more but I figured I am not at all a Linux expert and can use the support from Suse to help me work through my installation issues.

On the plus side, it looks like Suse 9 Pro AMD64 will support my on-board SATA, which is based on the VT8237 chipset.

Until the AMD64 version arrives I am going to leave Suse provided 2D driver alone.

I will soon be posting my experiences on what works and what doesn't with this version of Suse.

Thanks again, it's great to have access to the knowledge this board provides.
 
Old 03-07-2004, 09:15 AM   #4
Pwnz3r
Member
 
Registered: Jan 2004
Location: Lancaster, OH
Distribution: Gentoo
Posts: 393

Rep: Reputation: 30
It's kind of sad if you have to wonder what things will work with SuSe. With Gentoo basically everything works because Gentoo is totally customizable for any application, whether desktop or server.
 
Old 03-08-2004, 11:05 AM   #5
goulartca
LQ Newbie
 
Registered: Sep 2003
Location: USA
Distribution: Suse 9.1
Posts: 16

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by Pwnz3r
It's kind of sad if you have to wonder what things will work with SuSe. With Gentoo basically everything works because Gentoo is totally customizable for any application, whether desktop or server.
I agree an wish I didn't have to wonder about what works/doesn't at all, in any distribution. I did download the patch CD for AMD64 from Suse and it boot with no problems recognizing my SATA drive. That said I am, as you said, wondering about what else may not work in the 64-bit version.

I know very little (ok, nothing ) about Gentoo and a few minutes ago checked their site for the first time. The whole concept of dynamically configuring a system sounds very interesting but I didn't see anything about support for AMD64 processors. Do you know if they are supported in full 64-bit mode?
Edit: Disregard this paragraph (except for the part of not knowing anything about Gentoo!). I went back to the site and found a 64-bit version for AMD64. Since I am currently in the process of selecting a platform that I will use for commercial applications, and the packaged version of Gentoo is fairly inexpensive, I ordered it as well. I will install both Gentoo and Suse for AMD64 and compare the two in terms of ease of installation, HW compatibility and overall performance.

I am not swimming in money but I do (eventually) expect to make some money from applications running on open source technology. That plus my belief that money spent on Open Source (even Suse) is a lot better than anything spent on Microsoft justified my decision.

I will post my "newbie" impressions of the two distributions as soon as I receive them and have time to play.

Again, thanks for your help.

Last edited by goulartca; 03-08-2004 at 11:28 AM.
 
Old 04-02-2004, 03:29 PM   #6
sbharvey_linux
LQ Newbie
 
Registered: Apr 2004
Distribution: RH 8.2 and SuSE 9.0
Posts: 4

Rep: Reputation: 0
Have similiar problem

I believe I have a similar problem, I to have gotten SuSE version 9.0.
I think the real problem is that the Box set out right now is Athlon 32
bit compatible not 64.

I have nothing but grief with trying to install module needed for the
nvidia Chip set nforce3 150. The system worked out of the box (after
the Nvidia driver was installed manually). Then I performed a
Yasts update, and then game over, module nvnet would no longer load,
and tar.gz files targeted for the 32 bit the 64 bit version would not work.
 
  


Reply



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
Suse 9.2 and Nvidia GeForce FX 5200 ? Chequah Linux - Hardware 2 05-11-2005 05:12 PM
suse nvidia drivers gforce 5500 not found scankyfrank SUSE / openSUSE 2 05-08-2005 04:28 PM
Nvidia Geforce FX 5200 Driver Problem On SuSE 9.1 DozenEggs Linux - Hardware 0 07-23-2004 11:29 PM
TwinView with Gforce fx 5200 on Fedora Core 1,not working Sathanas Linux - Hardware 0 04-20-2004 09:42 PM
Cant install RedHat 9 w/ Gforce FX 5200..... Petro Linux - Newbie 5 10-23-2003 12:13 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 11:06 PM.

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