LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 05-06-2017, 02:10 AM   #1
xingban
LQ Newbie
 
Registered: May 2017
Posts: 13

Rep: Reputation: Disabled
my network card cannot connect to Internet but WiFi is OK. HOW can i solve it?


when i execute command the result show below:
"uname -a"
Linux ubuntu 2.6.32-28-generic #55-Ubuntu SMP Mon Jan 10 21:21:01 UTC 2011 i686 GNU/Linux

"lspci"
06:00.0 Ethernet controller: Atheros Communications Device 1083 (rev c0)
07:00.0 Network controller: Atheros Communications Inc. AR9287 Wireless Network Adapter (rev 01)

"lspci -vvv"
Kernel driver in use: atheros_eth
Kernel modules: atl1e

"modprobe atl1e"

"lsmod | grep atl1e"
atl1e 60162 0

"sudo ip link set up eth0"
"sudo ifconfig eth0 up"

"ifconfig"
eth0 Link encap:Ethernet HWaddr 1c:75:08:b5:d2:49
inet6 addr: fe80::1e75:8ff:feb5:d249/64 Scope:Link
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:6 errors:11 dropped:0 overruns:0 frame:8
TX packets:0 errors:0 dropped:0 overruns:0 carrier:462
collisions:0 txqueuelen:1000
RX bytes:360 (360.0 B) TX bytes:0 (0.0 B)
Interrupt:27

lijian@ubuntu:~$ modprobe atl1c
FATAL: Error inserting atl1c (/lib/modules/2.6.32-28-generic/kernel/drivers/net/atl1c/atl1c.ko): Operation not permitted

"lsmod"
parport 32635 3 ppdev,parport_pc,lp
atl1e 60162 0
ahci 32200 1

below is entry on /etc/udev/rules.d/70-persistent-net.rules
# This file maintains persistent names for network interfaces.
# See udev(7) for syntax.
#
# Entries are automatically added by the 75-persistent-net-generator.rules
# file; however you are also free to add your own entries.

# PCI device 0x168c:0x002e (ath9k)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="88:9f:fa:7d:a1:38", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"

# PCI device 0x1969:0x1083 (atheros_eth)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="1c:75:08:b5:d2:49", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
 
Old 05-06-2017, 06:01 AM   #2
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,289

Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
The Atherosclerosis stuff is WiFi.

What does this command show?
Code:
lspci -v  |grep -C5 eth0

If it doesn't show much, you are lacking the proper driver, or your hardware is knackered.
 
Old 05-06-2017, 07:20 AM   #3
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,502

Rep: Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489
The "operation not permitted" message you report for the command "modprobe atl1c" would indicate you need to be root to do that so preface the command with sudo and try again. It looks like you are using an older, possibly unsupported version of Ubuntu so has internet connection worked previously?
 
1 members found this post helpful.
Old 05-06-2017, 03:14 PM   #4
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by xingban View Post
lijian@ubuntu:~$ modprobe atl1c
FATAL: Error inserting atl1c (/lib/modules/2.6.32-28-generic/kernel/drivers/net/atl1c/atl1c.ko): Operation not permitted
Hello and welcome to the forum

Per yancek's suggestion below, the command for Ubuntu should be...

Code:
sudo modprobe atl1c
Quote:
Originally Posted by xingban View Post
"uname -a"
Linux ubuntu 2.6.32-28-generic #55-Ubuntu SMP Mon Jan 10 21:21:01 UTC 2011 i686 GNU/Linux
From the list mentioned here, it appears you're using Ubuntu 10.04, which, depending on the age of your system, may or may not have all the necessary drivers to run (use) your devices. Please share with us the brand and model (and model number) of your computer so we can give you more detailed information. Thanks!

Please also bear in mind that Ubuntu 10.04 has already reached its EOL (end of life) and is no longer receiving security and other siftware updates.

Regards...

Last edited by ardvark71; 05-06-2017 at 03:20 PM. Reason: Added information.
 
Old 05-06-2017, 08:14 PM   #5
xingban
LQ Newbie
 
Registered: May 2017
Posts: 13

Original Poster
Rep: Reputation: Disabled
to: business_kid

Quote:
Originally Posted by business_kid View Post
The Atherosclerosis stuff is WiFi.

What does this command show?
Code:
lspci -v  |grep -C5 eth0

If it doesn't show much, you are lacking the proper driver, or your hardware is knackered.
my network card can be connected to Internet when using windows 7 in the same computer with different hard disk (it work under windows 7). but it does not work in my current ubuntu.
how to do next because it show:
lijian@ubuntu:~$ lspci -v |grep -C5 eth0
lijian@ubuntu:~$

Last edited by xingban; 05-06-2017 at 09:31 PM.
 
Old 05-06-2017, 08:32 PM   #6
xingban
LQ Newbie
 
Registered: May 2017
Posts: 13

Original Poster
Rep: Reputation: Disabled
to: yancek

Quote:
Originally Posted by yancek View Post
The "operation not permitted" message you report for the command "modprobe atl1c" would indicate you need to be root to do that so preface the command with sudo and try again. It looks like you are using an older, possibly unsupported version of Ubuntu so has internet connection worked previously?
yes, it has internet connection worked previously. it does not work now (it work under windows 7) but WiFi is ok.

the command show:
lijian@ubuntu:~$ sudo modprobe atl1c
[sudo] password for lijian:
lijian@ubuntu:~$

when input command lsmod, some message disappear and some below:


uvcvideo 57310 0
mac80211 205402 1 ath9k
ath 7611 1 ath9k
fbcon 35102 71
tileblit 2031 1 fbcon
font 7557 1 fbcon
bitblit 4707 1 fbcon
softcursor 1189 1 bitblit
videodev 34361 1 uvcvideo
v4l1_compat 13251 2 uvcvideo,videodev
snd 54180 15 snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_ seq,snd_timer,snd_seq_device
cfg80211 126528 3 ath9k,mac80211,ath
led_class 2864 1 ath9k
soundcore 6620 1 snd
psmouse 63245 0
serio_raw 3978 0
i2c_piix4 8335 0
vga16fb 11385 1
vgastate 8961 1 vga16fb
snd_page_alloc 7076 2 snd_hda_intel,snd_pcm
video 17375 0
output 1871 1 video
lp 7028 0
parport 32635 3 ppdev,parport_pc,lp
atl1e 60162 0
ahci 32200 1
usb_storage 39553 0


when input command this way it show:
lijian@ubuntu:~$ lsmod | grep atl1c
atl1c 28083 0

when input command ifconfig, eth0 disappear:






RX bytes:3280 (3.2 KB) TX bytes:3280 (3.2 KB)

vmnet1 Link encap:Ethernet HWaddr 00:50:56:c0:00:01
inet addr:172.16.25.1 Bcast:172.16.25.255 Mask:255.255.255.0
inet6 addr: fe80::250:56ff:fec0:1/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:24 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

vmnet8 Link encap:Ethernet HWaddr 00:50:56:c0:00:08
inet addr:172.16.55.1 Bcast:172.16.55.255 Mask:255.255.255.0
inet6 addr: fe80::250:56ff:fec0:8/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:24 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

wlan0 Link encap:Ethernet HWaddr 88:9f:fa:7d:a1:38
inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::8a9f:faff:fe7d:a138/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:755083 errors:0 dropped:0 overruns:0 frame:0
TX packets:605103 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1093578024 (1.0 GB) TX bytes:66627467 (66.6 MB)


after restart computer then input command:
lijian@ubuntu:~$ ifconfig
eth0 Link encap:Ethernet HWaddr 1c:75:08:b5:d2:49
inet6 addr: fe80::1e75:8ff:feb5:d249/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:183 errors:0 dropped:0 overruns:0 frame:0
TX packets:46 errors:0 dropped:0 overruns:0 carrier:1
collisions:0 txqueuelen:1000
RX bytes:14908 (14.9 KB) TX bytes:2886 (2.8 KB)
Interrupt:27

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:44 errors:0 dropped:0 overruns:0 frame:0
TX packets:44 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:3280 (3.2 KB) TX bytes:3280 (3.2 KB)

vmnet1 Link encap:Ethernet HWaddr 00:50:56:c0:00:01
inet addr:172.16.25.1 Bcast:172.16.25.255 Mask:255.255.255.0
inet6 addr: fe80::250:56ff:fec0:1/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:24 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

vmnet8 Link encap:Ethernet HWaddr 00:50:56:c0:00:08
inet addr:172.16.55.1 Bcast:172.16.55.255 Mask:255.255.255.0
inet6 addr: fe80::250:56ff:fec0:8/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:24 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

wlan0 Link encap:Ethernet HWaddr 88:9f:fa:7d:a1:38
inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::8a9f:faff:fe7d:a138/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1249 errors:0 dropped:0 overruns:0 frame:0
TX packets:1119 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:950809 (950.8 KB) TX bytes:203679 (203.6 KB)

lijian@ubuntu:~$ lsmod
Module Size Used by
aes_i586 7268 1
aes_generic 26863 1 aes_i586
binfmt_misc 6587 1
vmnet 40445 13
ppdev 5259 0
parport_pc 25962 0
vsock 36759 0
vmci 64374 1 vsock
vmmon 57520 0
pppoe 8943 0
pppox 2074 1 pppoe
joydev 8740 0
snd_hda_codec_atihdmi 2367 1
arc4 1153 2
snd_hda_intel 22005 2
snd_hda_codec 74201 2 snd_hda_codec_atihdmi,snd_hda_intel
snd_hwdep 5412 1 snd_hda_codec
snd_pcm_oss 35308 0
snd_mixer_oss 13746 1 snd_pcm_oss
snd_pcm 70694 3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
snd_seq_dummy 1338 0
snd_seq_oss 26722 0
snd_seq_midi 4557 0
snd_rawmidi 19056 1 snd_seq_midi
snd_seq_midi_event 6003 2 snd_seq_oss,snd_seq_midi
snd_seq 47263 6 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
ath9k 306138 0
snd_timer 19098 2 snd_pcm,snd_seq
mac80211 205402 1 ath9k
ath 7611 1 ath9k
snd_seq_device 5700 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq
cfg80211 126528 3 ath9k,mac80211,ath
fbcon 35102 71
tileblit 2031 1 fbcon
font 7557 1 fbcon
bitblit 4707 1 fbcon
softcursor 1189 1 bitblit
uvcvideo 57310 0
snd 54180 15 snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_ seq,snd_timer,snd_seq_device
videodev 34361 1 uvcvideo
v4l1_compat 13251 2 uvcvideo,videodev
psmouse 63245 0
serio_raw 3978 0
led_class 2864 1 ath9k
i2c_piix4 8335 0
soundcore 6620 1 snd
vga16fb 11385 1
vgastate 8961 1 vga16fb
snd_page_alloc 7076 2 snd_hda_intel,snd_pcm
video 17375 0
output 1871 1 video
lp 7028 0
parport 32635 3 ppdev,parport_pc,lp
ahci 32200 1
atl1e 60162 0
usb_storage 39553 0

Last edited by xingban; 05-06-2017 at 09:30 PM.
 
Old 05-06-2017, 09:04 PM   #7
xingban
LQ Newbie
 
Registered: May 2017
Posts: 13

Original Poster
Rep: Reputation: Disabled
to: ardvark71

Quote:
Originally Posted by ardvark71 View Post
Hello and welcome to the forum

Per yancek's suggestion below, the command for Ubuntu should be...

Code:
sudo modprobe atl1c


From the list mentioned here, it appears you're using Ubuntu 10.04, which, depending on the age of your system, may or may not have all the necessary drivers to run (use) your devices. Please share with us the brand and model (and model number) of your computer so we can give you more detailed information. Thanks!

Please also bear in mind that Ubuntu 10.04 has already reached its EOL (end of life) and is no longer receiving security and other siftware updates.

Regards...

it has internet connection previously and it has not gotten internet connection since April 15.(it is ok under windows 7). WiFi CONNECTION on Internet is ok.
To provide information, what command should i enter?

it seems upgrading OS is no way and will you give me some idea?

the command show:
lijian@ubuntu:~$ sudo lshw -C network
[sudo] password for lijian:
*-network
description: Ethernet interface
product: Atheros Communications
vendor: Atheros Communications
physical id: 0
bus info: pci@0000:06:00.0
logical name: eth0
version: c0
serial: 1c:75:08:b5:d2:49
size: 100MB/s
capacity: 1GB/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress vpd bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=ATL1C driverversion=1.0.1.14 duplex=full firmware=L1e latency=0 link=yes multicast=yes port=twisted pair speed=100MB/s
resources: irq:27 memory:d0200000-d023ffff ioport:2000(size=128)
*-network
description: Wireless interface
product: AR9287 Wireless Network Adapter
vendor: Atheros Communications Inc.
physical id: 0
bus info: pci@0000:07:00.0
logical name: wlan0
version: 01
serial: 88:9f:fa:7d:a1:38
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=ath9k ip=192.168.1.2 latency=0 multicast=yes wireless=IEEE 802.11bgn
resources: irq:19 memory:d0100000-d010ffff
lijian@ubuntu:~$

lijian@ubuntu:~$ lspci -nnk | grep -i net -A2
06:00.0 Ethernet controller [0200]: Atheros Communications Device [1969:1083] (rev c0)
Kernel driver in use: atheros_eth
Kernel modules: atl1e
07:00.0 Network controller [0280]: Atheros Communications Inc. AR9287 Wireless Network Adapter [168c:002e] (rev 01)
Kernel driver in use: ath9k
Kernel modules: ath9k
lijian@ubuntu:~$

Last edited by xingban; 05-06-2017 at 10:41 PM.
 
Old 05-06-2017, 10:59 PM   #8
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by xingban View Post
it seems upgrading OS is no way and will you give me some idea?
Hi...

I would need to know your computer brand and model (and model number) to see if the latest version of Ubuntu would be a "good fit" for your system.

Also, did the ethernet connection work at any point in time with your current Ubuntu install?

Regards...
 
Old 05-07-2017, 01:35 AM   #9
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,289

Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
Quote:
Originally Posted by xingban View Post
my network card can be connected to Internet when using windows 7 in the same computer with different hard disk (it work under windows 7). but it does not work in my current ubuntu.
how to do next because it show:
lijian@ubuntu:~$ lspci -v |grep -C5 eth0
lijian@ubuntu:~$


You have no driver loaded for your network card.
 
Old 05-08-2017, 11:16 AM   #10
xingban
LQ Newbie
 
Registered: May 2017
Posts: 13

Original Poster
Rep: Reputation: Disabled
to: ardvark71

Quote:
Originally Posted by ardvark71 View Post
Hi...

I would need to know your computer brand and model (and model number) to see if the latest version of Ubuntu would be a "good fit" for your system.

Also, did the ethernet connection work at any point in time with your current Ubuntu install?

Regards...
the ethernet connection worked WITH current Ubuntu install half month ago but sometime no good and sometime good.

I DO NEED UPGRADING AND ALSO NEED TO GET THE CARD WORKED AT CURRENT INSTALL.

SOME MESSAGE BELOW:
RELEASE 10.04(LUCID)
kernel linux 2.6.32-28-eneric
GNOME 2.30.2

memory:2.7GiB
PROCESSOR 0: AMD C-50 processor
PROCESSOR 1: AMD C-50 processor

lijian@ubuntu:~$ sudo lshw | grep product >file
lijian@ubuntu:~$ gedit file

product: Aspire 5253
product: Aspire 5253
product: ACR128X64D3S1333C9
product: ACR256X64D3S1333C9
product: AMD C-50 Processor
product: Advanced Micro Devices [AMD]
product: ATI Technologies Inc
product: ATI Technologies Inc
product: SB700/SB800 SATA Controller [AHCI mode]
product: TOSHIBA MK3265GS
product: DVDRAM GT32N
product: SB700/SB800 USB OHCI0 Controller
product: SB700/SB800 USB EHCI Controller
product: SB700/SB800 USB OHCI0 Controller
product: SB700/SB800 USB EHCI Controller
product: SBx00 SMBus Controller
product: SBx00 Azalia (Intel HDA)
product: SB700/SB800 LPC host controller
product: SBx00 PCI to PCI Bridge
product: ATI Technologies Inc
product: ATI Technologies Inc
product: Atheros Communications
product: ATI Technologies Inc
product: AR9287 Wireless Network Adapter
product: Advanced Micro Devices [AMD]
product: Advanced Micro Devices [AMD]
product: Advanced Micro Devices [AMD]
product: Advanced Micro Devices [AMD]
product: Advanced Micro Devices [AMD]
product: Advanced Micro Devices [AMD]
product: Advanced Micro Devices [AMD]
product: Advanced Micro Devices [AMD]

lijian@ubuntu:~$ sudo dmidecode -s baseboard-manufacturer
Acer

lijian@ubuntu:~$ sudo dmidecode | less | grep Version | sed -n '2p'

Version: V1.02

lijian@ubuntu:~$ sudo dmidecode | less | grep Version
Version: V1.02
Version: V1.02
Version: V1.02
Version: Chassis Version
Compiler Version: VC 9.0
Version: AMD C-50 Processor
lijian@ubuntu:~$ sudo dmidecode | less | grep "Product Name"
Product Name: Aspire 5253
Product Name: Aspire 5253

Last edited by xingban; 05-08-2017 at 11:25 AM.
 
Old 05-08-2017, 11:20 AM   #11
xingban
LQ Newbie
 
Registered: May 2017
Posts: 13

Original Poster
Rep: Reputation: Disabled
to: business_kid

Quote:
Originally Posted by business_kid View Post
You have no driver loaded for your network card.
will you give me commands? I AM NEWBIE AND I DON'T QUITE UNDERSTAND THE MOST OF COMMANDS

Last edited by xingban; 05-08-2017 at 11:29 AM.
 
Old 05-08-2017, 02:51 PM   #12
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by xingban View Post
the ethernet connection worked WITH current Ubuntu install half month ago but sometime no good and sometime good.

I DO NEED UPGRADING AND ALSO NEED TO GET THE CARD WORKED AT CURRENT INSTALL.
Quote:
Originally Posted by xingban View Post
will you give me commands? I AM NEWBIE AND I DON'T QUITE UNDERSTAND THE MOST OF COMMANDS
Hi...

In using all caps in some of your words, you're essentially shouting at us. While I understand your situation may be difficult, please understand that we are all volunteers here and no one is paying us to provide technical support nor are we required to do so. Please remain civil in your discourse.

At this point, I have no idea why your ethernet has stopped working in your current install of Ubuntu. Did you do anything during this time that would affect the networking in your OS, such as attempting to upgrade the driver or installing and uninstalling network related software? If so, please tell, us exactly what you did.

Considering you only have 2 GB's of memory, you might want to add more memory to your system. According to what I see here, if this is your system, you should be able add a total of 8 GB's, which would help prevent sluggishness with the more resource intensive distributions.

If that's not a possibility and you want to stick with something in the Ubuntu family, you can try installing Lubuntu 16.04 LTS, which is more lightweight than the current version of Ubuntu. You can view the step by step installation instructions here. Please read the information carefully to ensure you understand what's required. You can run it live first (before installing it) to see if you like it.

Regards...

Last edited by ardvark71; 05-08-2017 at 04:00 PM. Reason: Added information.
 
Old 05-08-2017, 03:53 PM   #13
JeremyBoden
Senior Member
 
Registered: Nov 2011
Location: London, UK
Distribution: Debian
Posts: 1,947

Rep: Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511
Quote:
Originally Posted by xingban View Post
when i execute command the result show below:
"uname -a"
Linux ubuntu 2.6.32-28-generic #55-Ubuntu SMP Mon Jan 10 21:21:01 UTC 2011 i686 GNU/Linux
That's not a very recent kernel is it?
 
Old 05-09-2017, 11:07 AM   #14
xingban
LQ Newbie
 
Registered: May 2017
Posts: 13

Original Poster
Rep: Reputation: Disabled
to:JeremyBoden

Quote:
Originally Posted by JeremyBoden View Post
That's not a very recent kernel is it?
it is old one which i cannot get rid of because i built some server on it.
my computer does not give indication on whether I press the cap button. i am lazy not to rebuild everything

Last edited by xingban; 05-09-2017 at 11:40 AM.
 
Old 05-09-2017, 11:25 AM   #15
xingban
LQ Newbie
 
Registered: May 2017
Posts: 13

Original Poster
Rep: Reputation: Disabled
to : ardvark71

Quote:
Originally Posted by ardvark71 View Post
Hi...

In using all caps in some of your words, you're essentially shouting at us. While I understand your situation may be difficult, please understand that we are all volunteers here and no one is paying us to provide technical support nor are we required to do so. Please remain civil in your discourse.

At this point, I have no idea why your ethernet has stopped working in your current install of Ubuntu. Did you do anything during this time that would affect the networking in your OS, such as attempting to upgrade the driver or installing and uninstalling network related software? If so, please tell, us exactly what you did.

Considering you only have 2 GB's of memory, you might want to add more memory to your system. According to what I see here, if this is your system, you should be able add a total of 8 GB's, which would help prevent sluggishness with the more resource intensive distributions.

If that's not a possibility and you want to stick with something in the Ubuntu family, you can try installing Lubuntu 16.04 LTS, which is more lightweight than the current version of Ubuntu. You can view the step by step installation instructions here. Please read the information carefully to ensure you understand what's required. You can run it live first (before installing it) to see if you like it.

Regards...
thank you for your advice.
for "In using all caps"(i added the original paragraph at different time),i say sorry to all because my careless keying and my limited English knowledge(so i ignore the difference in meaning between upper-case and lower-case)lead misunderstanding.

for my cable card connection, it is usually sudden disconnection during my normal Internet browsing. i didn't change software at that time.

for "add more memory...", do i have to insert mem chip?

the message "...configuration: autonegotiation=on broadcast=yes driver=ATL1C driverversion=1.0.1.14..." give "ATL1C" instead "ATL1E",does this mean some contradiction? can i solve it ?

if i install Lubuntu 16.04 LTS, do i have to erase my current system?

Last edited by xingban; 05-09-2017 at 02:37 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Wifi card sees network just unable to connect jaysons Linux - Wireless Networking 3 02-27-2008 02:52 AM
cannot connect to Belkin WiFi Router from laptop network card crmpicco General 2 05-19-2007 04:52 PM
How to connect to the internet using network card? Henningstrom Linux - Newbie 6 02-27-2005 08:48 PM
my new network card cant connect to internet klara Linux - Networking 5 09-02-2004 08:39 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 01:25 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration