LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 03-24-2016, 05:38 AM   #1
thakuma
LQ Newbie
 
Registered: Mar 2016
Posts: 3

Rep: Reputation: Disabled
I cannot configure network with a new USB adapter in Fedora20


My desktop is a dual boot of Windows7 and Fedora20. A lightning damaged my previous network adapter. With a new USB adapter I configured net in Windows7 but cannot in Fedora20. I tried nmcli commands but failed. I am adding here a few output.

[sonu@localhost ~]$ nmcli device status
DEVICE TYPE STATE
enp0s26f2u2 ethernet unavailable
lo loopback unmanaged

[sonu@localhost ~]$ nmcli con show
NAME UUID TYPE TIMESTAMP-REAL
mynet 4be97ce8-6caa-450d-ac91-6bce94bf4cab 802-3-ethernet never

[sonu@localhost ~]$ nmcli con up mynet ifname enp0s26f2u2
Error: Connection activation failed: Device not managed by NetworkManager or unavailable

[sonu@localhost ~]$ ip link
1: lo: <loopback,up,lower_up> mtu 65536 qdisc noqueue state UNKNOWN
mode DEFAULT group default
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp0s26f2u2: <no-carrier,broadcast,multicast,up> mtu 1500 qdisc
pfifo_fast state DOWN mode DEFAULT group default qlen 1000
link/ether 00:e0:00:10:9e:e1 brd ff:ff:ff:ff:ff:ff
 
Old 03-24-2016, 10:39 AM   #2
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
Hi...

Welcome to the forum

I'm not sure I can resolve this issue but out of curiosity, is this a ethernet or wireless adapter? Can you post a link to the manufacturer's product page?

Also, please post the results of...

Code:
lspci -nnk | grep -i net -A2
Code:
ifconfig -a
Code:
sudo lshw -C network
Code:
dmesg | grep -iC 3 "enp0s26f2u2"
If wireless, please also include...

Code:
iwconfig
There is also a script that will generate a lot of useful information here. Sounds like you will need to choose Method 2.

Regards...

Last edited by ardvark71; 03-24-2016 at 10:41 AM. Reason: Deleted unnecessary link.
 
Old 03-24-2016, 12:33 PM   #3
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
i take it you are not aware that there is NO support for fedora 20 any more
it went END OF LIFE in June of 2015

currently fedora only supports fedora 23 and the soon to be end of life 22

please stay current and use a operating system that is supported

install Fedora 23
 
Old 03-24-2016, 09:13 PM   #4
thakuma
LQ Newbie
 
Registered: Mar 2016
Posts: 3

Original Poster
Rep: Reputation: Disabled
This is ethernet. Some of the commands is not giving any output. I am copying here as it was.

[sonu@localhost ~]$ lspci -nnk | grep -i net -A2
[sonu@localhost ~]$ ifconfig -a
enp0s26f2u2: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether 00:e0:00:10:9e:e1 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 0 (Local Loopback)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

[sonu@localhost ~]$ sudo lshw -C network
sudo: lshw: command not found
[sonu@localhost ~]$ dmesg | grep iC 3 "enp0s26f2u2"
grep: 3: No such file or directory
grep: enp0s26f2u2: No such file or directory
 
Old 03-24-2016, 09:30 PM   #5
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
Hi...

Thank you for supplying the information that you were able, however, it's not enough (at least for me) to be able to help you.

EDIT: Mistakes were made on my part, please see my response below syg00's....

You might want to take John VV's suggestion and upgrade your version of Fedora or switch to another distribution, if possible.

Regards...

Last edited by ardvark71; 03-25-2016 at 03:19 AM. Reason: Changed information.
 
Old 03-24-2016, 11:09 PM   #6
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,128

Rep: Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121
I'm surprised that lspci didn't return anything - certainly works as expected in F23.
You need to go through journalctl (or dmesg) to see what is happening to the driver load for that card. Start with that last command you were given - you mistyped it; should have a minus sign in front of the "iC".
 
Old 03-25-2016, 03:16 AM   #7
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 syg00 View Post
Start with that last command you were given - you mistyped it; should have a minus sign in front of the "iC".
Thanks for catching that, I totally missed it.

To the OP: I also forgot that this is a USB adapter, please try the command below, in place of lspci and post the results...

Code:
lsusb
Also, you're using Fedora, please just try just using...

Code:
lshw -C network
Another boo-boo on my part. My apologies.

However, I do agree with syg00 that it's quite odd that there were no results for the "lspci" command.

Regards...

Last edited by ardvark71; 03-25-2016 at 03:22 AM. Reason: Changed smiley.
 
Old 03-26-2016, 12:57 AM   #8
thakuma
LQ Newbie
 
Registered: Mar 2016
Posts: 3

Original Poster
Rep: Reputation: Disabled
In my present OS I am heavily busy with a few installed softwares like kile, grace, gfortran. I am afraid if i go to higher version of OS right now and even after then I cant configure network then I will be in great trouble. So presently I take 'going to F23' as my last option.

[sonu@localhost ~]$ dmesg | grep -iC 3 "enp0s26f2u2"
[ 613.787540] dm9601 5-2:1.0 enp0s26f2u2: kevent 4 may have been dropped
[ 613.788505] dm9601 5-2:1.0 enp0s26f2u2: kevent 4 may have been dropped
[ 613.790490] dm9601 5-2:1.0 enp0s26f2u2: kevent 4 may have been dropped
[ 613.794485] dm9601 5-2:1.0 enp0s26f2u2: kevent 4 may have been dropped
[ 613.796523] dm9601 5-2:1.0 enp0s26f2u2: kevent 4 may have been dropped
[ 613.798486] dm9601 5-2:1.0 enp0s26f2u2: kevent 4 may have been dropped
[ 613.800505] dm9601 5-2:1.0 enp0s26f2u2: kevent 4 may have been dropped
[ 613.800569] dm9601 5-2:1.0 enp0s26f2u2: link down
[ 613.802476] dm9601 5-2:1.0 enp0s26f2u2: kevent 4 may have been dropped
[ 613.804475] dm9601 5-2:1.0 enp0s26f2u2: kevent 4 may have been dropped
[ 613.807453] dm9601 5-2:1.0 enp0s26f2u2: kevent 4 may have been dropped
[ 613.821556] dm9601 5-2:1.0 enp0s26f2u2: link down
[ 613.844478] dm9601 5-2:1.0 enp0s26f2u2: link down
[ 613.864611] dm9601 5-2:1.0 enp0s26f2u2: link down

[sonu@localhost ~]$ lsusb
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 005 Device 002: ID 0fe6:9700 Kontron (Industrial Computer Source / ICS Advent) DM9601 Fast Ethernet Adapter
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 002: ID 046d:c077 Logitech, Inc. M105 Optical Mouse
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

[sonu@localhost ~]$ lshw -C network
bash: lshw: command not found...

Last edited by thakuma; 03-26-2016 at 01:08 AM.
 
Old 03-26-2016, 04:20 PM   #9
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
Hi...

From what I'm seeing on Google, this is somewhat of a problematic adapter, however, it apparently is supported out of the box in Ubuntu 14.04.

What is your kernel version?

Code:
uname -r
I found this page which has a driver for kernel 2.6.32 but, as it was for ClearOS, I think the installation procedure for you will be different, if your kernel version is the same. Even if it is, I can't guarantee it will work.

Also found this thread that might be of help.

However, I think your best option is purchasing a more compatible adapter. Looking here, I noticed the words, "Works out of the box on Linux (Fedora 20)" under "Amazon.com: Belkin USB 3.0 to Gigabit Ethernet Adapter ..." which led to this page. I'm sure there are others available, too.

Regards...

Last edited by ardvark71; 03-26-2016 at 04:23 PM. Reason: Added information.
 
  


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
How to Configure USB Wireless Adapter? Darrell22 Linux - Networking 2 11-14-2014 04:01 PM
how to configure 2wire usb wireless adapter in puppy linux 7trek Linux - Wireless Networking 13 09-10-2010 01:43 AM
Setting USB Network Controller (SR9600 USB To Fast Ethernet Adapter) on FC10 katrok Linux - Hardware 1 06-26-2009 08:31 PM
Fedora 9 and Network Adapter 3COM OfficeConnect Wireless 11g Compact USB Adapter mpharkin Linux - Newbie 1 09-20-2008 05:18 AM
How can I do to configure D-Link USB Adapter DWL-G132 in Ubuntu 7.04? Luca T.T. Linux - Wireless Networking 0 05-30-2007 07:36 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

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