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
  •  


Samsung Galaxy Tab A8 10.5

Samsung Galaxy Tab A8 10.5" SM-X200 128GB Wifi Only Tablet Open Box

$149.99



EXCELLENT SAMSUNG GALAXY TAB 4 - 10.1in SM-T537V - 16GB WIFI VERIZON ANDROID picture

EXCELLENT SAMSUNG GALAXY TAB 4 - 10.1in SM-T537V - 16GB WIFI VERIZON ANDROID

$34.99



Genuine Samsung Book Cover Keyboard for 14.6

Genuine Samsung Book Cover Keyboard for 14.6" Galaxy Tab S8 Ultra | S8 Ultra 5G

$89.99



Samsung Galaxy Tab A T387V 8

Samsung Galaxy Tab A T387V 8" 32GB Black Android WiFi + Verizon - Acceptable

$25.99



Samsung USB 3.1 Flash Drive Bar Plus 256gb TITAN Gray picture

Samsung USB 3.1 Flash Drive Bar Plus 256gb TITAN Gray

$24.10



SAMSUNG AM-P613NZBMXAR Galaxy S6 Lite 2022 10.4

SAMSUNG AM-P613NZBMXAR Galaxy S6 Lite 2022 10.4" 64GB Wi-Fi Tablet With S Pen,

$134.00



Samsung Galaxy 12.4 Inch Slim Keyboard For S7+ | S7 FE | S8+ | S8+ 5G EF-DT730 picture

Samsung Galaxy 12.4 Inch Slim Keyboard For S7+ | S7 FE | S8+ | S8+ 5G EF-DT730

$49.99



Samsung Galaxy Tab A9 (X110) 64GB 4GB RAM International Version (New) picture

Samsung Galaxy Tab A9 (X110) 64GB 4GB RAM International Version (New)

$129.99



Samsung 22 In LED-backlit LCD monitor, S22E450D picture

Samsung 22 In LED-backlit LCD monitor, S22E450D

$45.00



512GB SAMSUNG EVO Plus Micro SD MicroSDXC Flash Memory Card w/ SD Adapter picture

512GB SAMSUNG EVO Plus Micro SD MicroSDXC Flash Memory Card w/ SD Adapter

$21.99