Jump to content
  • Recently Browsing

    • No registered users viewing this page.

Linux Anybody?


Recommended Posts

maybe you're on to something sir. do you have an idea where to get the drivers?

i mean the proper drivers on the cd that came with the board are for the windows OS, not linux

so i have to get a tarball of the driver right?

 

thanks so much for the help guys, will post an update again :lol: :mtc:

 

you'll rarely need to download and recompile network drivers, chances are you (or the distro) already have them installed (/lib/modules/<kernel version>). post your "lspci" and "uname -r" output to give us more info.

 

or.... it's also possible that the drivers are loaded and the interface is not activated, please post output from "ip l l" --> india papa space lima space lima

 

btw, my replies are non-distro specific :)

Edited by cruesome
Link to comment
you'll rarely need to download and recompile network drivers, chances are you (or the distro) already have them installed (/lib/modules/<kernel version>). post your "lspci" and "uname -r" output to give us more info.

 

or.... it's also possible that the drivers are loaded and the interface is not activated, please post output from "ip l l" --> india papa space lima space lima

 

btw, my replies are non-distro specific :)

 

hi sir! these are the output of the following commands

 

"lspci"

 

00:00.0 Host bridge: Intel Corporation 82945G/GZ/P/PL Memory Controller Hub (rev 02)

 

00:02.0 VGA compatible controller: Intel Corporation 82945G/GZ Integrated Graphics Controller (rev 02)

 

00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01)

 

00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 01)

 

00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 01)

 

00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 01)

 

00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 01)

 

00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 01)

 

00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)

 

00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01)

 

00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)

 

00:1f.2 IDE interface: Intel Corporation 82801GB/GR/GH (ICH7 Family) SATA IDE Controller (rev 01)

 

00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 01)

 

01:05.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)

 

"uname -r"

 

2.6.24-19-generic

 

thanks for the continuing help sirs! :thumbsupsmiley: :mtc:

Link to comment
Am already in the process of saving the files for Ubuntu, but I'm not sure if I'll be committed just yet. Maybe when I upgrade my hdd to 750gb, I'll install it and see how it works.

 

Subukan mo muna LiveCD bro. Pag nagustuhan mo saka mo lang install sa hdd.

 

Try mo Slack KillBill, pwede install windo$e apps.

 

Cheers!

Link to comment
cruesome ...kindly reocmmend a good book for RHEL thanks

 

lomex, i'm not really a rhel fan, or rh/fedora for that matter. I find books from Prentice Hall and O'Riley publishing a lot more detailed compaired to other published materials.

 

i don't remember buying distro specific books, i usually read materials specific to the topics (tcp/ip, perl, etc) tldp.org is still the best source for linux docs imho.

Edited by cruesome
Link to comment
hi sir! these are the output of the following commands

 

"lspci"

 

01:05.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)

 

"uname -r"

 

2.6.24-19-generic

 

thanks for the continuing help sirs! :thumbsupsmiley: :mtc:

 

looks like you have a realtek 8139 based nic, fairly popular one. the driver comes default with linux called "rtl8139".

 

this command loads the driver: modprobe rtl8139

this brings up the interface: ip link set eth0 up

this assigns the ip address: ip addr add 10.161.1.120/16 brd + dev eth0 (replace with your IP address)

and the default gateway: ip route add default via 10.161.1.254 dev eth0 (replace with your gateway)

 

just to make sure things are in order: ip adrr list (sample output below)

 

1: eth0: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast qlen 1000

link/ether 00:11:95:c0:c9:9d brd ff:ff:ff:ff:ff:ff

inet 10.161.1.120/16 brd 10.161.255.255 scope global eth0

 

let us know if that worked.

Link to comment
looks like you have a realtek 8139 based nic, fairly popular one. the driver comes default with linux called "rtl8139".

 

this command loads the driver: modprobe rtl8139

this brings up the interface: ip link set eth0 up

this assigns the ip address: ip addr add 10.161.1.120/16 brd + dev eth0 (replace with your IP address)

and the default gateway: ip route add default via 10.161.1.254 dev eth0 (replace with your gateway)

 

just to make sure things are in order: ip adrr list (sample output below)

 

1: eth0: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast qlen 1000

link/ether 00:11:95:c0:c9:9d brd ff:ff:ff:ff:ff:ff

inet 10.161.1.120/16 brd 10.161.255.255 scope global eth0

 

let us know if that worked.

 

oh man, this is what happened:

 

command: modprobe rtl8139

output: FATAL: Module rtl8139 not found

 

command: ip link set eth0 up

output:

RTNETLINK answers: Operation not permitted

 

command: ip l l

output: 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue

link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00

2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000

link/ether 00:1e:90:e8:37:53 brd ff:ff:ff:ff:ff:ff

 

thanks for the help sirs

i'm ready to give up :(

Link to comment
oh man, this is what happened:

 

command: modprobe rtl8139

output: FATAL: Module rtl8139 not found

don't worry, your eth0 is up!!! driver is probably built into the kernel

 

command: ip link set eth0 up

output:

RTNETLINK answers: Operation not permitted

guess you're lacking root privileges

 

 

command: ip l l

output: 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue

link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00

2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000

link/ether 00:1e:90:e8:37:53 brd ff:ff:ff:ff:ff:ff

 

your network adapter is working alright

 

thanks for the help sirs

i'm ready to give up :(

 

then try this again:

 

this assigns the ip address: ip addr add 10.161.1.120/16 brd + dev eth0 (replace with your IP address)

and the default gateway: ip route add default via 10.161.1.254 dev eth0 (replace with your gateway)

 

just to make sure things are in order: ip adrr list (sample output below)

 

1: eth0: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast qlen 1000

link/ether 00:11:95:c0:c9:9d brd ff:ff:ff:ff:ff:ff

inet 10.161.1.120/16 brd 10.161.255.255 scope global eth0

check these files as well:

 

/etc/sysconfig/network-scripts/ifcfg-eth0

/etc/sysconfig/networking/devices/ifcfg-eth0

/etc/sysconfig/networking/profiles/default/ifcfg-eth0

 

 

 

Edited by cruesome
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...