Results 1 to 3 of 3
Hi,
I have 2 network interface cards on my server and i'm unable find the interface cards for setting up an IP.
Desktop>System Settings>Network>
shows no cards
and if i ...
- 02-17-2009 #1Just Joined!
- Join Date
- Feb 2009
- Posts
- 1
Nic not being recognized on FC4
Hi,
I have 2 network interface cards on my server and i'm unable find the interface cards for setting up an IP.
Desktop>System Settings>Network>
shows no cards
and if i try to add, it says a miss match
$/sbin/lspci (shows....)
03:04.0 Ethernet controller: Broadcom Corporation: Unknown device 1668 (rev a3)
03:04.1 Ethernet controller: Broadcom Corporation: Unknown device 1668 (rev a3)
The network interface is “HPNC324i PCle Dual Port Gigabit Server adapter”, I’ve downloaded a rpm file from hp site and tried to follow the installation instructions , after running the below command,
# rpm -ivh tg3-<version>.src.rpm (ftp://ftp.hp.com/pub/softlib2/softwa....92n-2.src.txt )
I’m not sure what else should be done.
Can anyone help me on this one please?
Thanks,
Vj
- 02-17-2009 #2
You may need to just compile the driver from the source. You can extract the source from the rpm file, using this command.
This will give you, among other thing, a file with this name:Code:rpm2cpio tg3-3.92n-2.src.rpm | cpio -idmv
tg3-3.92n.tar.bz2
Ths is a compressed archive that contains the source files. You need to extract the files first, using this command:
You then can try and compile the driver using the standard methods. You will need the kernel source installed to do this.Code:tar xvfj tg3-3.92n.tar.bz2
Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 02-17-2009 #3
I had more time to look at this, after work today. There is a way to use the source rpm file. You still need the kernel sources for your kernel.
First, you install the file, as root, using this command.
This installs the source files in the /root folder. There is a folder in there called /rpmbuild It contains the source files and a spec file. The folders are arranged like this:Code:rpm -Uvh tg3-3.92n-2.src.rpm
You need to change directory to that folder.Code:/root /rpmbuild /BUILD /BUILDROOT /RPMS /i386 /SOURCES /SPECS /SRPMS
You can now build a rpm file.Code:cd /root/rpmbuild
It will make a rpm file in the /RPMS/i386 folder, named tg3-3.92n-2.i386.rpm. You can copy that to your home folder, and then install it.Code:rpmbuild -bb SPECS/tg3.spec
If you have any questions on this process, just ask.Paul
Please do not send Private Messages to me with requests for help. I will not reply.


Reply With Quote