Results 1 to 6 of 6
HI, i've just installed fedora 10 for about the 4th time in the last few days and have decided that i need some help from those more knowledgeable than me. ...
- 03-10-2009 #1Just Joined!
- Join Date
- Mar 2009
- Posts
- 3
Why isn't my network working?
HI, i've just installed fedora 10 for about the 4th time in the last few days and have decided that i need some help from those more knowledgeable than me. Every time i update it i lose the ability to access the network , it doesn't even detect it. The thing is when it is first installed it works perfectly and then i'm not sure if it is after i restart it or after i update then restart it, it does not find any networks. it finds my ethernet controller fine but it cannot use it to connect to the internet has anyone had this problem and know how to fix it or have any idea what could be causing it?
Thanks
- 03-10-2009 #2
In Linux, hardware drivers are usually created as modules to the Linux kernel (aka: kernel modules). When you first install Linux, it detects the hardware and loads the correct modules.
Now, when you update a fresh install, it usually will also install an updated kernel. It seems that the updated kernel doesn't have the driver module needed for the network card. If you have not updated again, you can check to see what module it is loading that works. First, enter this this command and post the output. It will list all of the PCI devices.
Now enter this command, and post the output. It will list all of the modules that are currently loaded.Code:/sbin/lspci
If you no longer have an internet connection on your Linux PC, and have to copy it to a Windows PC, you can pipe the output directly as a text file.Code:/sbin/lsmod
/sbin/lspci > lspci.txt
/sbin/lsmod > lsmod.txt
They can be found in your home folder.Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 03-12-2009 #3Just Joined!
- Join Date
- Mar 2009
- Posts
- 3
Thanks for replying,
Here you go, these are the two files you asked for.
- 03-12-2009 #4
- 03-12-2009 #5Just Joined!
- Join Date
- Mar 2009
- Posts
- 3
When i did that nothing happened, i.e. there was no output. My card is a Realtek RTL8168b/8111b Family PCI-E Gigabit Ethernet NIc (NDIS 6.0) it is onboard
- 03-12-2009 #6
OK, this is the card:
And this appears to be the driver loading for it:Code:02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 01)
You can check that it is still loaded after the connection stops working. Just use the lsmod command again.Code:Module Size Used by r8169 40964 0
To possibly see why it may not be working, read through the output of this command:
It is lengthy, but could provide valuable clues. Network cards are initialized towards the end of the boot cycle, so messages about them are usually found towards the bottom of the dmesg output. I would look for things like firmware errors or anything related to Realtek or eth0.Code:dmesg
Paul
Please do not send Private Messages to me with requests for help. I will not reply.


Reply With Quote
