Page 3 of 3 FirstFirst 123
Results 21 to 27 of 27

Thread: Help please - how do I install a ethernet card driver???

  1. #21
    Administrator Site Admin-
    Join Date
    Apr 2003
    Location
    USA
    Posts
    5,441
    Quote Originally Posted by cindy
    Sorry Harry - I meant to address the message to you.....
    Thanks! I was wondering if I had somehow unintentionally offended you.

    Note to others: if I have intentionally offended you, you don't really need to tell me about it.

  2. #22
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY USA
    Posts
    1,510
    This step is in substition of the modprobe step. If you complete this one then there is no need to do any modprobe.
    As root user, edit the /etc/modules-2.6.11 file
    Add '8139too' anywhere in that file. Then save it & exit it.

    Top of /etc/modules-2.6.11:
    # /etc/modules: kernel modules to load at boot time.
    #
    # This file should contain the names of kernel modules that are
    # to be loaded at boot time, one per line. Comments begin with
    # a '#', and everything on the line after them are ignored.
    ehci_hcd
    uhci_hcd
    ohci_hcd
    usb_storage
    ieee1394
    ohci1394
    sbp2 serialize_io=1
    Modified /etc/modules-2.6.11:
    # /etc/modules: kernel modules to load at boot time.
    #
    # This file should contain the names of kernel modules that are
    # to be loaded at boot time, one per line. Comments begin with
    # a '#', and everything on the line after them are ignored.
    ehci_hcd
    uhci_hcd
    ohci_hcd
    8139too
    usb_storage
    ieee1394
    ohci1394
    sbp2 serialize_io=1

    This next step is in substition of the netcardconfig. If you complete this one then there is no need to do any netcardconfig.
    As root user, edit the /etc/network/interfaces file
    Add
    Code:
    auto eth0
    iface eth0 inet dhcp
    to the end of that file. Then save & exit it.

    Contents of /etc/network/interfaces:
    # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

    # The loopback interface
    # automatically added when upgrading
    auto lo
    iface lo inet loopback
    Modified Contents of /etc/network/interfaces:
    # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

    # The loopback interface
    # automatically added when upgrading
    auto lo
    iface lo inet loopback
    auto eth0
    iface eth0 inet dhcp
    Then issue the commands:
    Code:
    cd /etc/rcS.d
    ln -s ../init.d/ifupdown-clean S18ifupdown-clean
    Once the changes are made, then reboot & see if the network now comes up automatically.

  3. #23
    Junior Member registered user
    Join Date
    Jun 2005
    Posts
    15
    James, I looked in every "etc" folder I could find and couldn't find a file called modules-2.6.11.

    I even tried using the 'find file' utility to first search for that file by name and then to find any file with the words "kernel modules" inside. I searched from the / root folder and didn't find it.

    FYI the version of Knoppix I'm using is 2.78 kernel 2.4.27

    I did find a file named "modules.conf" under /initrd/etc but the contents look very different.

    Maybe we're using different versions with different file names?

  4. #24
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY USA
    Posts
    1,510
    OK. I've been testing all of this on a HD install of Knoppix 3.9.

    I will do a HD install of Knoppix 3.7 & try it out.

  5. #25
    Senior Member registered user
    Join Date
    Oct 2003
    Location
    N42.41 W73 and change
    Posts
    401
    A quick note:

    There is a #knoppix channel on freenode, so if you want to go about things in real-er time you could use gaim to get things going, although I'm not sure gaim came with her knoppix.

    k->internet->gaim (an instant message client)

    add accounts, choose protocol irc and enter a screen name

    signon , click on join and enter #knoppix for the channel (no password)

    it is very useful when troubleshooting back and forth.

    HTH

  6. #26
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY USA
    Posts
    1,510
    Skip the my other big post as it is related to Knoppix 3.9. I did a HD install of Knoppix 3.7.

    This step is in substition of the modprobe step. If you complete this one then there is no need to do any modprobe.
    As root user, edit the /etc/modules-2.4.27 file
    Add '8139too' anywhere in that file. Then save it & exit it.

    Top of /etc/modules-2.4.27:
    # /etc/modules: kernel modules to load at boot time.
    #
    # This file should contain the names of kernel modules that are
    # to be loaded at boot time, one per line. Comments begin with
    # a '#', and everything on the line after them are ignored.
    ehci_hcd
    uhci_hcd
    ohci_hcd
    usb_storage
    ieee1394
    ohci1394
    sbp2 serialize_io=1
    Modified /etc/modules-2.4.27:
    # /etc/modules: kernel modules to load at boot time.
    #
    # This file should contain the names of kernel modules that are
    # to be loaded at boot time, one per line. Comments begin with
    # a '#', and everything on the line after them are ignored.
    ehci_hcd
    uhci_hcd
    ohci_hcd
    8139too
    usb_storage
    ieee1394
    ohci1394
    sbp2 serialize_io=1
    Then reboot. The system should pickup the eth0 device & DHCP should automaticaly assign it an address. Do a ifconfig -a to make sure the eth0 device is present & it now has an address

  7. #27
    Junior Member registered user
    Join Date
    Jun 2005
    Posts
    15
    Quote Originally Posted by UnderScore
    Skip the my other big post as it is related to Knoppix 3.9. I did a HD install of Knoppix 3.7.

    This step is in substition of the modprobe step. If you complete this one then there is no need to do any modprobe.
    As root user, edit the /etc/modules-2.4.27 file
    Add '8139too' anywhere in that file. Then save it & exit it.

    Top of /etc/modules-2.4.27:
    # /etc/modules: kernel modules to load at boot time.
    #
    # This file should contain the names of kernel modules that are
    # to be loaded at boot time, one per line. Comments begin with
    # a '#', and everything on the line after them are ignored.
    ehci_hcd
    uhci_hcd
    ohci_hcd
    usb_storage
    ieee1394
    ohci1394
    sbp2 serialize_io=1
    Modified /etc/modules-2.4.27:
    # /etc/modules: kernel modules to load at boot time.
    #
    # This file should contain the names of kernel modules that are
    # to be loaded at boot time, one per line. Comments begin with
    # a '#', and everything on the line after them are ignored.
    ehci_hcd
    uhci_hcd
    ohci_hcd
    8139too
    usb_storage
    ieee1394
    ohci1394
    sbp2 serialize_io=1
    Then reboot. The system should pickup the eth0 device & DHCP should automaticaly assign it an address. Do a ifconfig -a to make sure the eth0 device is present & it now has an address
    James - it worked!

    Thank you sooo much!

Page 3 of 3 FirstFirst 123

Similar Threads

  1. wireless card recognised as ethernet card.
    By Matthew87 in forum Networking
    Replies: 1
    Last Post: 12-17-2006, 02:29 AM
  2. Figuring out which ethernet driver I have loaded
    By carmat06 in forum Networking
    Replies: 1
    Last Post: 09-29-2005, 01:00 AM
  3. 3com X-jack PCMCIA card driver and install
    By mtaplits in forum Laptops
    Replies: 0
    Last Post: 08-04-2004, 09:14 AM
  4. Adding a new ethernet driver
    By pankepasa in forum Customising & Remastering
    Replies: 2
    Last Post: 03-08-2003, 02:58 AM
  5. Gigabit ethernet driver problem (Intel Pro/1000)
    By jstaker in forum Hardware & Booting
    Replies: 2
    Last Post: 01-17-2003, 05:13 PM

Posting Permissions

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


Supermicro 4U 4x Nvidia GPU AI Server 3.8Ghz 8-Core 64GB 2x10G SFP+ 2x2200W picture

Supermicro 4U 4x Nvidia GPU AI Server 3.8Ghz 8-Core 64GB 2x10G SFP+ 2x2200W

$3180.00



Supermicro 4U 4x Nvidia GPU AI Server 3.8Ghz 8-Core 256GB 2x10G SFP+ 2x2200W picture

Supermicro 4U 4x Nvidia GPU AI Server 3.8Ghz 8-Core 256GB 2x10G SFP+ 2x2200W

$3472.00



Intel - Core i9-13900K 13th Gen 24 cores 8 P-cores + 16 E-cores 36M Cache, 3 ... picture

Intel - Core i9-13900K 13th Gen 24 cores 8 P-cores + 16 E-cores 36M Cache, 3 ...

$689.99



Intel - Core i7-13700K 13th Gen 16 cores 8 P-cores + 8 E-cores 30M Cache, 3.4... picture

Intel - Core i7-13700K 13th Gen 16 cores 8 P-cores + 8 E-cores 30M Cache, 3.4...

$489.99



Intel - Core i7-12700K Desktop Processor 12 (8P+4E) Cores up to 5.0 GHz Unloc... picture

Intel - Core i7-12700K Desktop Processor 12 (8P+4E) Cores up to 5.0 GHz Unloc...

$419.99



Apple Mac Pro Processor Tray 5,1 2010 2012 2.4ghz 8 core picture

Apple Mac Pro Processor Tray 5,1 2010 2012 2.4ghz 8 core

$79.99



Intel - Core i9-12900K Desktop Processor 16 (8P+8E) Cores up to 5.2 GHz Unloc... picture

Intel - Core i9-12900K Desktop Processor 16 (8P+8E) Cores up to 5.2 GHz Unloc...

$619.99



Intel Core i9-13900KF Unlocked Desktop Processor - 24 Cores (8P+16E) & 32 Thread picture

Intel Core i9-13900KF Unlocked Desktop Processor - 24 Cores (8P+16E) & 32 Thread

$539.99



HP Workstation Z640 2x Xeon E5-2623V4 32GB Ram Dual 256GB SSD K420 Linux GA picture

HP Workstation Z640 2x Xeon E5-2623V4 32GB Ram Dual 256GB SSD K420 Linux GA

$234.98



HP TP01-3037C Desktop Intel Core i5-12400 Intel UHD 730, 8GB RAM 512GB SSD W11H picture

HP TP01-3037C Desktop Intel Core i5-12400 Intel UHD 730, 8GB RAM 512GB SSD W11H

$325.00