LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 03-10-2016, 02:10 AM   #1
gurran
LQ Newbie
 
Registered: Mar 2016
Location: Geekland
Distribution: Linux Mint KDE, Kali, AntiX, Dream Studio, Windows 10
Posts: 10

Rep: Reputation: Disabled
Reviving A Pentium II: NIC Card Woes


OK, so I have this wonderful piece of ancient hardware and I'm restoring it. So I got some scavenged parts...
  • Asus P2B Motherboard
  • Pentium II Processor
  • 3x 128MB RAM DIMM sticks
  • StarTech 5.1Ch Audio Card
  • Nvidia GeForce2 MX/MX 400 (rev b2) - known thanks to lspci
  • Realtek RTL-8139/8139C/8139C+ (rev 10) - known thanks to lspci
Along with the other necessities... IDE hard drive, IDE CD ROM, and a good ole floppy drive.

Good news? Boots to the antiX live CD like a charm!
Bad news? NIC card only shows in lspci...

So doing some research, I thought maybe it was a problem with IRQs. That theory is yet to be confirmed. However I finally managed to get something [possibly] useful from dmesg! After trying to look for anything "net" or "eth" related using
Code:
dmesg | grep -i -e net -e eth
and coming up empty handed, I tried using the PCI number I found through lspci: "09.0" and found an error that seems to lead to bug reports that get me nowhere:
Code:
[  0.098449] pci 0000:00:09.0: [10ec:0139] type 00 class 0x020000
[  0.098495] pci 0000:00:09.0: reg 0x10: [io 0xd000-0xd0ff]
[  0.098522] pci 0000:00:09.0: [Firmware Bug]: reg 0x14: invalid BAR (can't size)
[  0.098652] pci 0000:00:09.0: supports D1 D2
[  0.098670] pci 0000:00:09.0: PME# supported from D3hot
As you can probably tell the thing that caught my eye was the "Firmware Bug" line. So I hope someone will be able to decipher this [seemingly] cryptic error. Thanks.

Sincerely,
Patrick

Last edited by gurran; 03-10-2016 at 02:11 AM. Reason: Added rev to the NIC card line
 
Old 03-10-2016, 08:28 AM   #2
smallpond
Senior Member
 
Registered: Feb 2011
Location: Massachusetts, USA
Distribution: Fedora
Posts: 4,140

Rep: Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263
What kernel version are you running?
 
Old 03-10-2016, 09:14 AM   #3
gurran
LQ Newbie
 
Registered: Mar 2016
Location: Geekland
Distribution: Linux Mint KDE, Kali, AntiX, Dream Studio, Windows 10
Posts: 10

Original Poster
Rep: Reputation: Disabled
I don't remember the exact version, but it was 4.x range. I'll edit this post with the exact version in a few minutes. The distro I'm using (antiX) is based off of Debian Sid with a few optimizations for antique PCs.
 
Old 03-10-2016, 12:26 PM   #4
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,111
Blog Entries: 21

Rep: Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474
Post
Code:
inxi -Fxz
so we can see your hardware in code tags . It will show your kernel and wireless chip.
 
Old 03-10-2016, 12:38 PM   #5
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Hi gurran...

Welcome to the forum

If inxi is not installed, you can use this command...

Code:
lspci -nnk | grep -i net -A2
Regards...
 
Old 03-10-2016, 03:02 PM   #6
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,980

Rep: Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624
Some questions.

Any ISA slots in this?

Can you move the nic card to a new slot or is it onboard?

Isn't there a bios thing about resetting pci ???
 
Old 03-11-2016, 02:54 PM   #7
gurran
LQ Newbie
 
Registered: Mar 2016
Location: Geekland
Distribution: Linux Mint KDE, Kali, AntiX, Dream Studio, Windows 10
Posts: 10

Original Poster
Rep: Reputation: Disabled
Sorry for the late replies. I've been busy. I did not want to manually type this and there was no way for me to get a text file to/fro this antique, so I apologize for the format... https://imgur.com/s6oPzOb

@jefro I apologize for my ignorance, but what is an ISA slot? I've tried it on the 2 available PCI slots. Same result. However I did find the DOS driver floppy if it helps! Lol XD
 
Old 03-11-2016, 03:09 PM   #8
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,980

Rep: Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624
You suggested that there may be an irq,dma sort of thing going on. Boards with ISA are almost gone except in commercial uses. ISA (EISA) is the slot two versions before PCI. I count Microchannel in there.

So, if you did have an ISA it would be more likely that the board didn't allocate resources correctly. Generally PCI boards do a good job managing irq and memory and such.
 
Old 03-11-2016, 04:07 PM   #9
gurran
LQ Newbie
 
Registered: Mar 2016
Location: Geekland
Distribution: Linux Mint KDE, Kali, AntiX, Dream Studio, Windows 10
Posts: 10

Original Poster
Rep: Reputation: Disabled
I saw 3 unidentified expansion slots, but had no need for them so I didn't look it up. So I just looked it up and it has 4 PCI slots and 3 ISA slots (being the unidentified slots), as well as the "accelerated graphics" port. So the answer to your question is yes, it does has ISA slots.
 
Old 03-11-2016, 04:19 PM   #10
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,700

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
I would try loading the module just to see what happens:
modprobe 8139too
 
Old 03-11-2016, 04:21 PM   #11
gurran
LQ Newbie
 
Registered: Mar 2016
Location: Geekland
Distribution: Linux Mint KDE, Kali, AntiX, Dream Studio, Windows 10
Posts: 10

Original Poster
Rep: Reputation: Disabled
Unfortunately that didn't work... Google told me to try that. :-/
 
Old 03-11-2016, 04:21 PM   #12
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by gurran View Post
Sorry for the late replies. I've been busy. I did not want to manually type this and there was no way for me to get a text file to/fro this antique, so I apologize for the format... https://imgur.com/s6oPzOb
Hi gurran...

Would it be possible to get a screenshot (of a readout) from the command I've listed above?

Code:
lspci -nnk | grep -i net -A2
Please also include...

Code:
lshw -C network
Code:
ifconfig -a
Thanks!
 
Old 03-11-2016, 04:27 PM   #13
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,700

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
Didn't work but what was the error message etc?
 
Old 03-11-2016, 06:32 PM   #14
gurran
LQ Newbie
 
Registered: Mar 2016
Location: Geekland
Distribution: Linux Mint KDE, Kali, AntiX, Dream Studio, Windows 10
Posts: 10

Original Poster
Rep: Reputation: Disabled
@ardvark I can give you everything lshw, as it's not installed. https://imgur.com/a/C1MLH

@michael It didn't give an error, it loaded the driver just fine, but it did not do any good foractivating the hardware.

P.S.: I'm using Imgur because I have it on my phone where I'm making the posts and taking the pictures from. - simplicity.

Last edited by gurran; 03-11-2016 at 06:34 PM.
 
Old 03-11-2016, 06:35 PM   #15
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,700

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
Try the command:
ifconfig -a
 
  


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
NIC woes :( niwhsa Linux - Hardware 5 12-19-2006 07:43 PM
Wireless NIC Woes inversecow Linux - Hardware 1 11-21-2005 05:08 PM
Xc Cube by AOpen - NIC woes mrohde Linux - Hardware 1 09-06-2004 05:16 PM
ASOUND 10/100 NIC Setup Woes jdigiovanni Linux - Networking 1 04-10-2003 06:28 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 10:36 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