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
  •  


Mini External OLED AMIGA Gotek Floppy Drive Emulator For Amiga 500/500+/600/1200 picture

Mini External OLED AMIGA Gotek Floppy Drive Emulator For Amiga 500/500+/600/1200

$36.93



Internal Floppy Disk Drive Amiga 1000 JU-363-03 PARTS ONLY picture

Internal Floppy Disk Drive Amiga 1000 JU-363-03 PARTS ONLY

$45.00



Apollo Vampire 600v2 / 600 V2 FPGA Accelerator Card for Commodore Amiga 600 picture

Apollo Vampire 600v2 / 600 V2 FPGA Accelerator Card for Commodore Amiga 600

$350.00



AMIGA 2000 Mainboard Rev 6  ASIS picture

AMIGA 2000 Mainboard Rev 6 ASIS

$100.00



Commodore 1902A Color Display CRT Computer Monitor - TESTED & WORKING picture

Commodore 1902A Color Display CRT Computer Monitor - TESTED & WORKING

$299.95



Rare Vintage Commodore Computer Amiga 1200 picture

Rare Vintage Commodore Computer Amiga 1200

$900.00



Promqueen EPROM Programmer for Commodore VIC-20 SUPER RARE picture

Promqueen EPROM Programmer for Commodore VIC-20 SUPER RARE

$499.00



Vampirized Video Toaster Branded Amiga 2000 Desktop Computer w/Flyer Vampire etc picture

Vampirized Video Toaster Branded Amiga 2000 Desktop Computer w/Flyer Vampire etc

$4999.98



AMIGA 500 COMPUTER COMMODORE Complete in Box Powers/untested Good Condition picture

AMIGA 500 COMPUTER COMMODORE Complete in Box Powers/untested Good Condition

$370.00



TeensyROM Cartridge for Commodore 64/128: MIDI, Fastload, Emulation, and Network picture

TeensyROM Cartridge for Commodore 64/128: MIDI, Fastload, Emulation, and Network

$65.00