LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 03-12-2014, 08:13 AM   #1
merryway11
LQ Newbie
 
Registered: Mar 2014
Posts: 2

Rep: Reputation: Disabled
internet slow with wired connection OK with WiFi, do I need linux drivers?


New to Linux. Installed Mint 13.0 Maya about 2 weeks ago.
Running firefox 27. A little slow on WiFi but unacceptably slow with ethernet connection.

I remember we needed to install wireless drivers. Do I need drivers for the ethernet adapter? I've looked but I only see Windows drivers available online.

Laptop model compaq 6820s

Thank in advance!
 
Old 03-12-2014, 02:54 PM   #2
Doc CPU
Senior Member
 
Registered: Jun 2011
Location: Stuttgart, Germany
Distribution: Mint, Debian, Gentoo, Win 2k/XP
Posts: 1,099

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
Hi there,

Quote:
Originally Posted by merryway11 View Post
New to Linux. Installed Mint 13.0 Maya about 2 weeks ago.
Running firefox 27. A little slow on WiFi but unacceptably slow with ethernet connection.
is it just the delay per request? Or is it a low transfer rate with large transfers?
Does the problem occur with another browser as well, or is it limited to Firefox?
What about other network activity, like software updates? Do they run as fast as they should?

Quote:
Originally Posted by merryway11 View Post
I remember we needed to install wireless drivers. Do I need drivers for the ethernet adapter?
Usually not. Linux has suitable drivers for a multitude of network adapters in stock. With Debian, Ubuntu or Mint, I never had to tweak anything about the network adapter. Even so, it's not entirely impossible that there is an issue with yours. But I think we need a bit more information to narrow it down.

Quote:
Originally Posted by merryway11 View Post
Laptop model compaq 6820s
Unfortunately, the specs don't tell the type of network controller, but judging from the CPU type it looks to me that this computer isn't actually brand new. So it is very likely that drivers for the network controller have found their way into most contemporary Linux distros.

[X] Doc CPU
 
Old 03-12-2014, 09:27 PM   #3
Fred Caro
Senior Member
 
Registered: May 2007
Posts: 1,007

Rep: Reputation: 167Reputation: 167
merryway11,
you would expect it to be the other way round, do you have another router to test it with?
Perhaps it is your network (eth0) card, or lead/connection but it is odd that the wireless works better than wired.
You could try a different pc.

In other words try the easy stuff first.

Fred.
 
Old 03-21-2014, 05:50 PM   #4
merryway11
LQ Newbie
 
Registered: Mar 2014
Posts: 2

Original Poster
Rep: Reputation: Disabled
Hi friends,

I believe that I asked the wrong question.
The slow internet was just the tip of the iceberg problem.
Almost everything is not working. I expected a learning curve but this is beyond frustrating.
I've seen some people posting about certain distros not working on laptops.
Could Mint Maya be incompatable with my old machine Caopaq 6820s?
 
Old 03-21-2014, 08:18 PM   #5
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by merryway11 View Post
Hi friends,

I believe that I asked the wrong question.
The slow internet was just the tip of the iceberg problem.
Almost everything is not working. I expected a learning curve but this is beyond frustrating.
I've seen some people posting about certain distros not working on laptops.
Could Mint Maya be incompatable with my old machine Caopaq 6820s?
I'm not sure if Mint is incomparable with your PC or not...but if it has a low end processor you may want to consider a more light weight distribution. Puppy Linux maybe.

To find out what nic you have run this command--
Code:
lspci l grep -I network
I had to use the letter L in between lspci and grep. You should use the pipe when you execute the command.
Sorry I could not find the pipe on my Android--

To find out what mobo and processor you have run lspci by it's self.
 
Old 03-22-2014, 07:22 AM   #6
Doc CPU
Senior Member
 
Registered: Jun 2011
Location: Stuttgart, Germany
Distribution: Mint, Debian, Gentoo, Win 2k/XP
Posts: 1,099

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
Hi there,

Quote:
Originally Posted by Ztcoracat View Post
but if it has a low end processor you may want to consider a more light weight distribution. Puppy Linux maybe.
I don't think that's the point. After all, it's still a dual core Intel. I'm running that same Mint 13 "Maya" with MATE desktop on my own notebook, powered by a single core Intel Atom at 1.6MHz - and, well, it doesn't exactly feel turbocharged, but speed and responsiveness is absolutely okay.

Quote:
Originally Posted by Ztcoracat View Post
To find out what nic you have run this command--
Code:
lspci l grep -I network
I had to use the letter L in between lspci and grep. You should use the pipe when you execute the command.
Sorry I could not find the pipe on my Android--
Oh. Good to explain this. I was very confused when I looked at your code line. ;-)

[X] Doc CPU
 
Old 03-22-2014, 11:46 AM   #7
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
That command should be:
Code:
lspci | grep -i network
I found the processor here-
Code:
Intel Core 2 Duo T5470 / 1.6 GHz ( Dual-Core )
http://www.cnet.com/laptops/hp-compa...-32619617.html

Linux Mint 13 is based on Ubuntu 12.04.
I'm running Voyager which is based on Ubuntu 12.04 and it came with kernel 3.2.0 which support my wireless well.
http://linuxmint.com/rel_maya.php

I looked up the known issues with Ubuntu 12.04 but didn't find anything related to wireless-
https://wiki.ubuntu.com/PrecisePango...t-Installation

I'm thinking that kernel 3.2.0 should have the driver that OP needs for his WiFi card.

Sometimes and in some cases with performace or hardware issues installing another version of the kernel can help-

Maybe running the "dist-upgrade" command will provide Mint 13 with what it needs. (just an idea you don't have to if you don't want to)
merryway11

Last edited by Ztcoracat; 03-22-2014 at 11:47 AM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Fedora 15 Slow Wired Ethernet Connection To Internet GenePoole59 Linux - Networking 2 12-14-2011 04:33 PM
[SOLVED] DSL connection slow on Linux wired connection but fast on Windows wireless Pandarsson Linux - Wireless Networking 9 12-17-2010 05:55 PM
dual wifi and wired connection: how to make a specific website use only wifi? shinji2001xyz Linux - Networking 2 04-08-2010 10:13 AM
Slackware 13.0 & WICD - Slow wired connection, no wireless connection xTyrant Linux - Laptop and Netbook 2 10-14-2009 11:58 PM
slow internet in ubuntu 8.10 using pppoe wired connection T_1000 Ubuntu 5 04-16-2009 03:56 PM

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

All times are GMT -5. The time now is 02:33 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