Results 1 to 10 of 13
Hi!
I installed wolvix cub on a sony vaio vgn-ar21b. In the boot option I put acpi=off to allow wolvix boot without problem. When wolvix is ready, the netwok card ...
- 05-01-2008 #1Just Joined!
- Join Date
- May 2008
- Posts
- 7
Wolvix: can't recognize network adapter
Hi!
I installed wolvix cub on a sony vaio vgn-ar21b. In the boot option I put acpi=off to allow wolvix boot without problem. When wolvix is ready, the netwok card is not recognized. Then I write on terminal modprobe e100 and the network card appear but it's impossible to set up. It's always in down status and if I restart network, I loose network card and I have to redo modprobe e100.
Situation is worst because I dont' have compilers or makers on wolvix, so I can't compile any new drivers.
help me please!
ale
- 05-03-2008 #2Linux Enthusiast
- Join Date
- Apr 2004
- Location
- UK
- Posts
- 658
To be good, you must first be bad. "Newbie" is a rank, not a slight.
- 05-03-2008 #3Just Joined!
- Join Date
- May 2008
- Posts
- 7
network card is a "Intel pro/100 ve" adapter
For input/output questions:
I wrote in the shell modprobe e100 and nothing appear as output.
then I use a gui to access to ethernet services and I try to set "up" the network card without result.
thanks
ale
- 05-03-2008 #4Linux Enthusiast
- Join Date
- Apr 2004
- Location
- UK
- Posts
- 658
I've never used Wolvix so I've no idea how the gui looks. On the other hand the command line should be more or less the same.
No output from modprobe is a good thing, it would only report problems. Try using ifconfig to configure the card as root.
Changing 'interface' and 'address' to the actual interface name and IP address you need. Then try and ping another device on your network using its IP address.Code:ifconfig interface address up
This will set up a static IP which will be lost at the next reboot. To make this permanent and to get you Internet access we need to know if you are using static addresses or dhcp. If you are not sure then tell us more about your network and we can make an educated guess.
Let us know how you get on,
Chris...To be good, you must first be bad. "Newbie" is a rank, not a slight.
- 05-04-2008 #5Just Joined!
- Join Date
- May 2008
- Posts
- 7
Ok, I did this command
Code:ifconfig interface address up
(with no output)
and now I have the ethernet adaptor configured.
but ping is not working and I cannot surf internet because (I think) this pc is in a lan with DHCP.
ale
- 05-04-2008 #6Linux Enthusiast
- Join Date
- Apr 2004
- Location
- UK
- Posts
- 658
If you can use dhcp then all you should need is
Changing 'interface' to the right name should get you everything you need to get online. If that works then we can look at configuring it so it works every time. Can you post a link to the distribution you are using so we can take a look and see what you need.Code:dhclient interface
When things don't work, we will always need the error messages. If you can copy and paste the actual commands and output then that is best.but ping is not working
Let us know how you get on,
Chris...To be good, you must first be bad. "Newbie" is a rank, not a slight.
- 05-04-2008 #7Just Joined!
- Join Date
- May 2008
- Posts
- 7
dhclient doesn't work!
I tried to ping 2.254.51.129, an address of another pc (winXP) on the same net.Code:bash: dhclient: command not found
Error message was
The distribution I'm using is Wolvix Wolvix GNU/LinuxCode:DEstination Host Unreachable
thanks
ale
- 05-04-2008 #8Linux Enthusiast
- Join Date
- Apr 2004
- Location
- UK
- Posts
- 658
Ah, Slackware based distribution so the dhcp command is more likely
If you are still getting errors can you post the output ofCode:dhcpcd interface
Let us know how you get on,Code:ifconfig -a route -n
Chris...To be good, you must first be bad. "Newbie" is a rank, not a slight.
- 05-04-2008 #9Just Joined!
- Join Date
- May 2008
- Posts
- 7
well, I tried with
and pc spend 1 minute to execute (with no message error)Code:dhcpcd eth0
then a tried with
and eth0 is not active anymoreCode:ifconfig
this is the output
thanks againCode:root@wolvix e1000 # dhcpcd eth0 root@wolvix e1000 # ifconfig lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:2575 errors:0 dropped:0 overruns:0 frame:0 TX packets:2575 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:279992 (273.4 KiB) TX bytes:279992 (273.4 KiB) root@wolvix e1000 # ifconfig -a eth0 Link encap:Ethernet HWaddr 00:13:A9:28:93:4D BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:2575 errors:0 dropped:0 overruns:0 frame:0 TX packets:2575 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:279992 (273.4 KiB) TX bytes:279992 (273.4 KiB)
ale
- 05-05-2008 #10Linux Enthusiast
- Join Date
- Apr 2004
- Location
- UK
- Posts
- 658
dhcpcd will timeout after 60 seconds if it gets no dhcp offers, after that it will turn off your network card as you saw. This suggests you are going to have to configure things statically.
You need to know the IP of your DNS server, and the default gateway. You can get these from a running windows box with "ipconfig /a" (I think, it's been a while).
then do
Replacing the bold words with the actual values. That should get you online temporarily. If you have problems, post the output ofCode:ifconfig interface your_ip up route add default gw gateway_ip echo nameserver dns_ip >> /etc/resolv.conf
And we will see what we can do. If that works then we can look at making the changes permanent. Otherwise we'll try and fix what's broken then.Code:ifconfig -a route -n ping www.google.com
Let us know how you get on,
Chris...To be good, you must first be bad. "Newbie" is a rank, not a slight.


Reply With Quote

