Quote:
Originally Posted by etech3
You do not say if you are using DHCP or not.
What about ifconfig ethX (where X is you number ie 0,1)
Is the card "up"?
Have you checked your networking config file?
Your dns config file?
|
1) Yes; I use DHCP
2) It looks like the card is not seen,
ifconfig eth0 (eth1) ---> device not found (However, under Win 7 the connection to Internet works perfectly!)
ifconfig:
Code:
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:76 errors:0 dropped:0 overruns:0 frame:0
TX packets:76 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:5840 (5.8 KB) TX bytes:5840 (5.8 KB)
3) networking config
Code:
# networking - configure virtual network devices
#
# This task causes virtual network devices that do not have an associated
# kernel object to be started on boot.
description "configure virtual network devices"
start on (local-filesystems
and stopped udevtrigger)
task
pre-start exec mkdir -p /var/run/network
exec ifup -a
4) I did not find the dns config file
5) Should I add something into network-interface.conf file?
Code:
# network-interface - configure network device
#
# This service causes network devices to be brought up or down as a result
# of hardware being added or removed, including that which isn't ordinarily
# removable.
description "configure network device"
start on net-device-added
stop on net-device-removed INTERFACE=$INTERFACE
instance $INTERFACE
export INTERFACE
pre-start script
if [ "$INTERFACE" = lo ]; then
# bring this up even if /etc/network/interfaces is broken
ifconfig lo 127.0.0.1 up || true
initctl emit -n net-device-up \
IFACE=lo LOGICAL=lo ADDRFAM=inet METHOD=loopback || true
fi
mkdir -p /var/run/network
exec ifup --allow auto $INTERFACE
end script
post-stop exec ifdown --allow auto $INTERFACE
I have no idea how to force this Acer Aspire 5750G to see the card...