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
  •  


Handheld Cordless Car Vacuum: 14000PA High Power, Lightweight, Black picture

Handheld Cordless Car Vacuum: 14000PA High Power, Lightweight, Black

$36.79



Electric Vacuum Cleaner Air Duster Suction High Pressure for Computer Car Home picture

Electric Vacuum Cleaner Air Duster Suction High Pressure for Computer Car Home

$9.97



Electric Mini Air Duster Blower Vacuum Cleaner for PC Computer Laptop Dust picture

Electric Mini Air Duster Blower Vacuum Cleaner for PC Computer Laptop Dust

$30.95



Electric Vacuum Cleaner Air Duster Suction High Pressure for Computer Car Home picture

Electric Vacuum Cleaner Air Duster Suction High Pressure for Computer Car Home

$10.87



Mini Computer Vacuum USB Keyboard Cleaner PC Laptop Brush Dust Cleaning Kit US picture

Mini Computer Vacuum USB Keyboard Cleaner PC Laptop Brush Dust Cleaning Kit US

$13.68



Compressed Air Duster with Air Blower 100000RPM Vacuum Cleaner and Air Duster picture

Compressed Air Duster with Air Blower 100000RPM Vacuum Cleaner and Air Duster

$38.99



Electric Mini Cordless Air Duster Blower Vacuum Cleaner for Computer/CarCleaning picture

Electric Mini Cordless Air Duster Blower Vacuum Cleaner for Computer/CarCleaning

$17.58



2-In-1 Air Duster & Vacuum 60000 RPM Rechargeable Auto Computer Keyboard USB picture

2-In-1 Air Duster & Vacuum 60000 RPM Rechargeable Auto Computer Keyboard USB

$26.95



Vacuum Cleaner Corded INSE I5 18Kpa Powerful Suction 600W Motor Stick Handheld picture

Vacuum Cleaner Corded INSE I5 18Kpa Powerful Suction 600W Motor Stick Handheld

$175.50



Handheld Vacuum 16000pa, Strong Powerful Mini Car Cleaner, Dust Busters Cordl... picture

Handheld Vacuum 16000pa, Strong Powerful Mini Car Cleaner, Dust Busters Cordl...

$75.99