Operating System - Linux
1833051 Members
2454 Online
110049 Solutions
New Discussion

HP Mini nic and wan chips

 
Al Plant
Occasional Advisor

HP Mini nic and wan chips

How can I detect what the Nic and wan cards (chips) are in a MINI runing Linux.
I can not detect them under other OS like FreeBSD UNIX.

Any help appreciated as HP provides no clue in the documents that came with the unit.

Thanks,
Al Plant... Hawaii
4 REPLIES 4
Steven E. Protter
Exalted Contributor

Re: HP Mini nic and wan chips

Shalom Al Plant,

What unit are we talking about here.

Many low end PC's from HP simply use NIC cards that only work under windows.

To use these with Linux, I've had to install an LAN card.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Matti_Kurkela
Honored Contributor

Re: HP Mini nic and wan chips

So Linux is detecting your hardware, but FreeBSD isn't?

Things to check:
- "lspci -v" and "lsusb -v" will display a detailed listing of PCI and USB devices, respectively. This information is part of the interface standards, so it can be displayed even if the device has no driver installed.

The most recent free PCI and USB ID catalogs are available here:

http://pciids.sourceforge.net/
http://www.linux-usb.org/usb.ids

- for NICs, see "ethtool -i ethN" where ethN is the NIC you're interested in. It will identify the Linux driver module running the NIC.

- also check the kernel message output (e.g. "dmesg | tail"). Many modules will print some information about detected hardware in the kernel message buffer. Many of those informational messages have a very low priority, so they are not usually copied to the system logs.

MK
MK
Steven E. Protter
Exalted Contributor

Re: HP Mini nic and wan chips

What distribution of Linux versus BSD.

Most likely BSD has no drivers for the hardware.

The only way to get them is to determine the hardware manufacturer. If they have a driver for BSD fine. If not be ready to compile one.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Al Plant
Occasional Advisor

Re: HP Mini nic and wan chips

Thanks for the info.