LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 01-22-2016, 10:56 PM   #1
penyuan
Member
 
Registered: Oct 2009
Distribution: Scientific Linux 6
Posts: 190

Rep: Reputation: 19
Question Can't use VIA VT6122 gigabit ethernet controller in SL 7


Hello,

I'm trying to install Scientific Linux 7 on my VIA ARTiGO A1100, which used to run Scientific Linux 6.7 with no problems.

Now, I can boot into the Scientific Linux 7 live environment, but it is having trouble detecting the VIA VT6122 gigabit ethernet controller. The installer says there are no networking devices, but lspci shows:
Quote:
01:03.0 Ethernet controller, VIA Technologies Inc. VT6120/VT6121/VT6122 Gigabit Ethernet Adapter (rev 11)
Entering ifconfig -a shows only lo, and no eth0.

This used to work in Scientific Linux 6, so surely the newer kernel in Scientific Linux 7 should work with it, too? What can I do to troubleshoot this? Thank you.
 
Old 01-23-2016, 04:49 AM   #2
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by penyuan View Post
This used to work in Scientific Linux 6, so surely the newer kernel in Scientific Linux 7 should work with it, too?
unfortunately it doesn't work like this.
your VIA hardware is ancient, and it's possible that support has been dropped.
btw, VIA on linux has always been bad news for me.

you have to somehow find out which driver you need, and if it's already installed and recognizing your net controller.

the first part, i don't know.
the second part:
Code:
lspci -k | grep -iA5 net
 
1 members found this post helpful.
Old 01-23-2016, 08:05 AM   #3
penyuan
Member
 
Registered: Oct 2009
Distribution: Scientific Linux 6
Posts: 190

Original Poster
Rep: Reputation: 19
Thank you ondoho for your quick reply. I'm sad to hear that support might have been dropped!!!

To test if that was the case, I also tried live images of Debian and Manjaro, both of which run Linux kernel versions of up to the 4.1x series. And for both distros the NIC was detected and set up fine! Scientific Linux 7 uses Linux kernel versions that are between SL 6.7 and the current Debian and Manjaro kernels. Does that mean support might have been dropped and somehow re-instated????? Or does this suggest that the problem is *not* support for these VIA chipsets being dropped from the kernel??

I'll also try your lspci -k | grep -iA5 net suggestion. What does the command mean anway???
 
Old 01-23-2016, 08:26 AM   #4
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
i did not say it is necessarily like that.
you will get more definite answers by researching this yourself.
always have a look at the date of any online resource.
be especially wary, because this is a very old device, as computers go. older than 10 years.

you got me a little confused.
what kernel version are you using now, when the card is not recognized?

lspci lists info about your pci devices.
read "man lspci" to find out what the -k switch is for.

grep helps you to find what you're looking for in large output.
"man grep"

the thing in the middle: "|" is a pipe symbol, one of the best inventions since sticky tape. it allows you to pipe the output of one command (lspci) into another command (grep).

edit:
i think it's safe to assume that th rest of your machine is equally old, so you should start using distros geared towards old hardware.

Last edited by ondoho; 01-23-2016 at 08:30 AM.
 
1 members found this post helpful.
Old 01-23-2016, 09:50 AM   #5
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,148
Blog Entries: 21

Rep: Reputation: 3483Reputation: 3483Reputation: 3483Reputation: 3483Reputation: 3483Reputation: 3483Reputation: 3483Reputation: 3483Reputation: 3483Reputation: 3483Reputation: 3483
Quote:
This used to work in Scientific Linux 6,
1st. Have you md5sum checked the Scientific Linux 7 iso you downloaded?
2nd. Have you thought of running the kernel Scientific Linux 6 came with inside of version 7?

Quote:
To test if that was the case, I also tried live images of Debian and Manjaro, both of which run Linux kernel versions of up to the 4.1x series. And for both distros the NIC was detected and set up fine!
With that statement. I am kinda leaning to a corrupted iso download myself. Hence my md5sum question.
 
1 members found this post helpful.
Old 01-23-2016, 10:35 AM   #6
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,665

Rep: Reputation: Disabled
http://cateee.net/lkddb/web-lkddb/VIA_VELOCITY.html

Did you try and load the driver manually?
 
1 members found this post helpful.
Old 01-25-2016, 06:48 PM   #7
penyuan
Member
 
Registered: Oct 2009
Distribution: Scientific Linux 6
Posts: 190

Original Poster
Rep: Reputation: 19
Hello,

Thanks for your replies. I tried other Scientific Linux 7 ISOs, but none were able to correctly set up the NIC. I agree with ondoho that maybe this machine is just too old and I need to look for a lighter distribution. Eventually I settled with a fairly slimmed down Manjaro, and so far it is working well.

Thank you for your suggestions!
 
Old 01-26-2016, 10:14 AM   #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 penyuan View Post
Eventually I settled with a fairly slimmed down Manjaro, and so far it is working well.
Hi...

I'm glad you found a solution. If you would, please mark this thread as "SOLVED" by clicking on "Thread Tools" directly above your initial post. Thanks!

Regards...
 
1 members found this post helpful.
Old 01-26-2016, 12:27 PM   #9
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by penyuan View Post
I agree with ondoho that maybe this machine is just too old ...
i did not say that.
Quote:
... and I need to look for a lighter distribution.
i think there's a difference between a distro geared towards old hardware and a lightweight distro.
the first is most certainly also the second, but the second is not necessarily the first.
 
1 members found this post helpful.
Old 01-26-2016, 08:06 PM   #10
penyuan
Member
 
Registered: Oct 2009
Distribution: Scientific Linux 6
Posts: 190

Original Poster
Rep: Reputation: 19
Quote:
Originally Posted by ondoho View Post
i did not say that.
i think there's a difference between a distro geared towards old hardware and a lightweight distro.
the first is most certainly also the second, but the second is not necessarily the first.
I apologise if I misunderstood you. Nonetheless you did help me settle on a distro that worked. I hope you also accept my thanks!!
 
Old 01-27-2016, 11:39 AM   #11
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
penyuan, of course i accept your thanks.
my last comment was not meant to be negative - just want to make sure i'm not misunderstood.
my own hardware is pretty old (but never too old).
 
  


Reply

Tags
nic



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
VIA VT6122 Gigabit Slow geek745 Linux - Networking 8 06-28-2010 11:28 AM
compile error on centos 5.3 for attansic gigabit ethernet controller mylvarab Linux - Newbie 3 03-03-2010 08:37 AM
Any informations about 80003ES2LAN Gigabit Ethernet Controller (Copper) gile38 Linux - Networking 1 09-29-2008 06:16 AM
Marvell Gigabit Ethernet Controller not recognize in Slack 10.2 masterross Linux - Hardware 2 12-03-2005 05:38 PM
No driver for onboard Via VT6122 Gigabit Ethernet corkypa Linux - Networking 2 11-06-2005 09:49 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 12:51 AM.

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