Find the answer to your Linux question:
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. ...
  1. #1
    Just 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

  2. #2
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,577
    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.
    Code:
    /sbin/lspci
    Now enter this command, and post the output. It will list all of the modules that are currently loaded.
    Code:
    /sbin/lsmod
    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.

    /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.

  3. #3
    Just Joined!
    Join Date
    Mar 2009
    Posts
    3
    Thanks for replying,
    Here you go, these are the two files you asked for.
    Attached Files Attached Files

  4. #4
    Linux User Felarin's Avatar
    Join Date
    Mar 2007
    Location
    Brazil or Singapore
    Posts
    314
    Quote Originally Posted by raven_glory View Post
    Thanks for replying,
    Here you go, these are the two files you asked for.
    PCI Express Gigabit Ethernet controller (rev 01)
    03:0e.0

    Give me the output of lsmod | grep e1000

    What ethernet card is it?
    "A graphical user interface is just a mask. What lies beneath is what matters."

  5. #5
    Just 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

  6. #6
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,577
    OK, this is the card:
    Code:
    02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 01)
    And this appears to be the driver loading for it:
    Code:
    Module                  Size  Used by
    r8169                  40964  0
    You can check that it is still loaded after the connection stops working. Just use the lsmod command again.

    To possibly see why it may not be working, read through the output of this command:
    Code:
    dmesg
    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.
    Paul

    Please do not send Private Messages to me with requests for help. I will not reply.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...