Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 41

Thread: Gentoo Installation Questions and Problems

  1. #16
    Hypnotising you crono_logical's Avatar
    Join Date
    May 2001
    Location
    Back in Time
    Posts
    9,313
    Contributions
    • Former Administrator
    • Former Cid's Knight

    Default

    You can tack on "> filename" on the end of a command to output it to a plain text file instead, e.g.

    lsmod -a > /tmp/blahdeblah

    then you can do as you wish with the file
    Problems playing downloaded videos? Try CCCP


  2. #17
    ORANGE Dr Unne's Avatar
    Join Date
    Dec 1999
    Posts
    7,394
    Articles
    1
    Contributions
    • Former Administrator
    • Former Developer
    • Former Tech Admin

    Default

    Specifically what kind of ethernet card do you have? I don't see any modules in that list you posted that look like ethernet cards. The <b>lspci</b> command will list all your PCI cards, if you need to see a list. Post the contents of lspci here, even better. If you'd like to look at the stuff that gets output at boot time, you can use <b>dmesg</b>.

    Anyways, I think that eth1394 thing might be what's causing the problem. 1394 refers to firewire, yes? It might be detecting your firewire port as a network card. Do this:

    rmmod mii
    rmmod eth1394

    to unload those modules. Then do <b>ifconfig -a</b> and see what it says; if that was what the kernel was assigning to eth0, then eth0 should go away. If eth0 goes away when you do that, then that's a good thing; then you just figure out what your ethernet card's module is and modprobe it.

    If worse comes to worse, I can SSH to your machine and do it all for you.

    (You can highlight and paste text from the console with the mouse, if you run gpm. In linux, highlighting text automatically "copies" it, and middle-clicking "pastes" it. Just remember that. Probably doesn't help you right now, but it will once your internet works.)

  3. #18
    ..a Russian mountain cat. Yamaneko's Avatar
    Join Date
    Aug 2001
    Location
    Los Angeles, CA
    Posts
    15,927
    Contributions
    • Former Administrator
    • Former Cid's Knight

    Default

    NVIDIA nFORCE Networking Controller

    It's part of the ASUS NVIDIA Motherboard.

    Check the attachment in my first post too. Those four devices appear in my device manager.

    I have two ethernet ports in the back of my machine. The top one works, the bottom one doesn't. I think the bottom one is if I want to add that gigabit ethernet card later on, which my motherboard supports.

  4. #19
    ORANGE Dr Unne's Avatar
    Join Date
    Dec 1999
    Posts
    7,394
    Articles
    1
    Contributions
    • Former Administrator
    • Former Developer
    • Former Tech Admin

    Default

    Did you try what I said about rmmod'ing those Firewire modules and seeing if eth0 frees up?

    Onboard ethernet cards are evil. "NVIDIA nFORCE Networking Controller" sounds vague. <b>lspci</b> will give you more information, as I said. <b>ls /lib/modules/`uname -r`/kernel/drivers/net</b> will list all the ethernet modules on the CD. (Those are backticks around `uname -r`, i.e. the character below the ~ on the keyboard.) Find a module in there that looks like it goes with your card, and do

    modprobe nforce-net

    or whatever the name of the module is you want to use. Keep trying until one succeeds, and ifconfig -a shows your ethernet device. nforce-net might be the one you want, but there's no way for me to know.

  5. #20
    ..a Russian mountain cat. Yamaneko's Avatar
    Join Date
    Aug 2001
    Location
    Los Angeles, CA
    Posts
    15,927
    Contributions
    • Former Administrator
    • Former Cid's Knight

    Default

    Yay! eth0 frees up!

    I'll try loading modules now.

  6. #21
    ..a Russian mountain cat. Yamaneko's Avatar
    Join Date
    Aug 2001
    Location
    Los Angeles, CA
    Posts
    15,927
    Contributions
    • Former Administrator
    • Former Cid's Knight

    Default

    lspci gives me this:

    <b>00:04.0 Ethernet controller: Nvidia Corporation nForce ethernet Controller (rev a1)</b>

    I loaded the modules, but I have no idea which one to load. There are dozens.

  7. #22
    ORANGE Dr Unne's Avatar
    Join Date
    Dec 1999
    Posts
    7,394
    Articles
    1
    Contributions
    • Former Administrator
    • Former Developer
    • Former Tech Admin

    Default

    Is there one called "forcedeth"? Or "nforce-net"? Or "nvnet"? Try those. ifconfig -a after you try each one, to see if you get an eth0.

  8. #23
    ..a Russian mountain cat. Yamaneko's Avatar
    Join Date
    Aug 2001
    Location
    Los Angeles, CA
    Posts
    15,927
    Contributions
    • Former Administrator
    • Former Cid's Knight

    Default

    Ok, I get eth0 now with encap:Ethernet, but I still can't ping yahoo.com or connect to gentoo.org.

  9. #24
    ORANGE Dr Unne's Avatar
    Join Date
    Dec 1999
    Posts
    7,394
    Articles
    1
    Contributions
    • Former Administrator
    • Former Developer
    • Former Tech Admin

    Default

    Now that it's recognized, you have to enable it. Try <b>/etc/init.d/net.eth0 restart</b>.

    If that doesn't work you can try <b>dhcpcd eth0</b>.

  10. #25
    ..a Russian mountain cat. Yamaneko's Avatar
    Join Date
    Aug 2001
    Location
    Los Angeles, CA
    Posts
    15,927
    Contributions
    • Former Administrator
    • Former Cid's Knight

    Default

    Success! I'm using Links now!

    I've already made the partitions with the correct filesystems using Partition Magic. Should I still look over them with fdisk or continue with stage3 extraction?

    EDIT: fdisk is giving me the error "unable to open /dev/hda" when I run "fdisk /dev/hda".

  11. #26
    ORANGE Dr Unne's Avatar
    Join Date
    Dec 1999
    Posts
    7,394
    Articles
    1
    Contributions
    • Former Administrator
    • Former Developer
    • Former Tech Admin

    Default

    Post the output of

    <b>mount</b>

    If you run links as <b>links -driver fb</b>, it'll even load graphics and stuff. Very nice.

    (Be sure to remember what module you used for your network card, so you can put it in your kernel later when you compile your own.)

  12. #27
    ..a Russian mountain cat. Yamaneko's Avatar
    Join Date
    Aug 2001
    Location
    Los Angeles, CA
    Posts
    15,927
    Contributions
    • Former Administrator
    • Former Cid's Knight

    Default

    tmpfs on / type tmpfs (rw)
    none on /dev type devfs (rw)
    devfs on /dev type devfs (rw)
    /newroot/dev/cdroms/cdrom0 on /mnt/cdrom type iso9660 (ro)
    none on /proc type proc (rw)
    none on /proc/bus/usb type usbfs (rw)

  13. #28
    ORANGE Dr Unne's Avatar
    Join Date
    Dec 1999
    Posts
    7,394
    Articles
    1
    Contributions
    • Former Administrator
    • Former Developer
    • Former Tech Admin

    Default

    According to your blog, you have SATA HDs, right? Does /dev/sda exist? Or /dev/hd[anything]? Maybe /dev/hde or /dev/hdg. Or do <b>dmesg | more</b> and look for what it called your hard drives.

  14. #29
    ..a Russian mountain cat. Yamaneko's Avatar
    Join Date
    Aug 2001
    Location
    Los Angeles, CA
    Posts
    15,927
    Contributions
    • Former Administrator
    • Former Cid's Knight

    Default

    Here's the output of "fdisk /dev/hde":
    The number of cylinders for this disk is set to 14593.
    There is nothing wrong with that, but this is larger than 1024,

    and could in certain setups cause problems with:
    1) software that runs at boot time (e.g., old versions of LILO)
    2) booting and partitioning software from other OSs
    (e.g., DOS FDISK, OS/2 FDISK)
    That shouldn't be a problem, right?

  15. #30
    ORANGE Dr Unne's Avatar
    Join Date
    Dec 1999
    Posts
    7,394
    Articles
    1
    Contributions
    • Former Administrator
    • Former Developer
    • Former Tech Admin

    Default

    Mine says that too. Not a problem.

Posting Permissions

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